111 lines
3 KiB
Bash
111 lines
3 KiB
Bash
HISTFILE=~/.histfile
|
|
HISTSIZE=10000
|
|
SAVEHIST=10000
|
|
setopt extendedglob nomatch notify histignorespace histignorealldups histnofunctions histnostore histverify incappendhistory autopushd pushdignoredups
|
|
unsetopt autocd beep
|
|
|
|
if [[ -f /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh ]];
|
|
then
|
|
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
|
|
fi
|
|
|
|
|
|
bindkey -v
|
|
# allow ctrl-a and ctrl-e to move to beginning/end of line
|
|
bindkey '^a' beginning-of-line
|
|
bindkey '^e' end-of-line
|
|
|
|
if [[ $(uname) == 'Darwin' ]]; then
|
|
if [[ $(arch) == 'arm64' ]]; then
|
|
path+=('/opt/homebrew/bin')
|
|
else
|
|
path+=('/usr/local/bin')
|
|
fi
|
|
fi
|
|
|
|
fpath=(~/bin ~/.zshcompletions $fpath)
|
|
zstyle :compinstall filename '/home/anthonys/.zshrc'
|
|
zstyle ":completion:*" complete _complete _ignored _approximate _expand
|
|
zstyle ":completion:*" glob 1
|
|
zstyle ":completion:*" insert-unambiguous true
|
|
zstyle ':completion:*' menu select
|
|
zstyle ':completion:*' rehash true
|
|
zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'l:|=* r:|=*'
|
|
zstyle ":completion:*" substitute 1
|
|
|
|
[[ -n "$key[Up]" ]] && bindkey -- "$key[Up]" up-line-or-beginning-search
|
|
[[ -n "$key[Down]" ]] && bindkey -- "$key[Down]" down-line-or-beginning-search
|
|
|
|
path=("$HOME/bin" "$HOME/go/bin" $path)
|
|
|
|
local ZSH_PLUGIN_DIR="$HOME/.zsh_plugins"
|
|
zstyle ':znap:*' repos-dir "${ZSH_PLUGIN_DIR}"
|
|
zstyle ':znap:*' auto-compile no
|
|
zstyle ':znap:*:*' git-maintenance off
|
|
autoload -Uz add-zle-hook-widget
|
|
|
|
if [[ ! -d "${ZSH_PLUGIN_DIR}/zsh-snap" ]]; then
|
|
mkdir -p ~/.zsh_plugins
|
|
cd ~/.zsh_plugins
|
|
git clone https://github.com/marlonrichert/zsh-snap.git
|
|
fi
|
|
source "${ZSH_PLUGIN_DIR}/zsh-snap/znap.zsh" && export ZNAP_USED=1
|
|
|
|
local -a paths
|
|
for line in "${(@f)"$(<~/.zsh_plugins.txt)"}"
|
|
{
|
|
if [[ ! -d "${ZSH_PLUGIN_DIR}/$(basename $line)" ]]; then
|
|
paths=($paths $line)
|
|
fi
|
|
}
|
|
|
|
if [[ ! ${#paths[@]} -eq 0 ]]; then
|
|
echo "Paths not empty: $paths"
|
|
znap clone ${^paths}
|
|
fi
|
|
|
|
if [[ ( $ZNAP_USED = 1 ) ]]; then
|
|
znap source oh-my-zsh lib/{git,completion}
|
|
znap source oh-my-zsh plugins/colored-man-pages
|
|
fpath=($fpath ~[oh-my-zsh]/plugins/{pass,ripgrep,cargo,docker,docker-compose,rsync,fd})
|
|
znap source fast-syntax-highlighting
|
|
fpath=($fpath ~[zsh-completions]/src)
|
|
znap source zsh-vimode-visual
|
|
fi
|
|
|
|
if [[ -d ~/.cargo/bin ]]; then
|
|
path=($path $HOME/.cargo/bin)
|
|
fi
|
|
|
|
znap source oh-my-zsh plugins/{gitignore,git,helm,mvn,gradle}
|
|
|
|
function dt() {
|
|
local session_name
|
|
session_name=${1:-DefaultSession}
|
|
|
|
if [[ "${SESSION_MANAGER}" == "tmux" ]]; then
|
|
tmux -u -2 new-session -A -s $session_name
|
|
else
|
|
zellij attach --session-serialization false -c $session_name
|
|
fi
|
|
}
|
|
|
|
function root() {
|
|
if [[ -n $(git rev-parse --show-toplevel) ]]
|
|
then
|
|
cd "$(git rev-parse --show-toplevel)"
|
|
fi
|
|
}
|
|
|
|
if [[ -a $HOME/.zshsrc ]]; then
|
|
source $HOME/.zshsrc
|
|
else
|
|
printf "No zshsrc\nOne has been created\n"
|
|
touch $HOME/.zshsrc
|
|
fi
|
|
|
|
alias exa="eza -l --git"
|
|
|
|
for funcfile in $HOME/.zsh.d/* ; do
|
|
source "${funcfile}"
|
|
done
|