fixed zsh config nonsense
This commit is contained in:
@@ -1 +1,22 @@
|
||||
source "$HOME/.profile"
|
||||
test -e "$HOME/.functions" && source "$HOME/.functions"
|
||||
|
||||
unsetopt autocd
|
||||
bindkey -v
|
||||
zstyle :compinstall filename "$HOME/.zshrc"
|
||||
autoload -Uz compinit
|
||||
compinit -u -d "$XDG_CACHE_HOME/zsh/zcompdump"
|
||||
setopt rmstarsilent
|
||||
|
||||
plugindir="/usr/share/zsh/plugins"
|
||||
for plugin in \
|
||||
"$plugindir/zsh-autosuggestions/zsh-autosuggestions.zsh" \
|
||||
"$plugindir/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh" \
|
||||
"$plugindir/zsh-history-substring-search/zsh-history-substring-search.zsh"
|
||||
do
|
||||
source "$plugin"
|
||||
done
|
||||
|
||||
bindkey -a 'k' history-substring-search-up
|
||||
bindkey -a 'j' history-substring-search-down
|
||||
|
||||
alias which="$HOME/.local/bin/which"
|
||||
|
||||
Reference in New Issue
Block a user