mirror of
https://github.com/bertptrs/vimconfig.git
synced 2025-12-25 20:40:32 +01:00
Zsh autocompletion plugin.
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -34,3 +34,6 @@
|
|||||||
[submodule "vim/.vim/bundle/vim-fugitive"]
|
[submodule "vim/.vim/bundle/vim-fugitive"]
|
||||||
path = vim/.vim/pack/bundle/start/vim-fugitive
|
path = vim/.vim/pack/bundle/start/vim-fugitive
|
||||||
url = https://github.com/tpope/vim-fugitive.git
|
url = https://github.com/tpope/vim-fugitive.git
|
||||||
|
[submodule "zsh/.config/zsh/plugins/zsh-autosuggestions"]
|
||||||
|
path = zsh/.config/zsh/plugins/zsh-autosuggestions
|
||||||
|
url = https://github.com/zsh-users/zsh-autosuggestions/
|
||||||
|
|||||||
@@ -39,6 +39,17 @@ elif [[ -o interactive ]]; then
|
|||||||
fi
|
fi
|
||||||
unset keyfile
|
unset keyfile
|
||||||
|
|
||||||
|
################
|
||||||
|
# Load plugins #
|
||||||
|
################
|
||||||
|
plugins=(zsh-autosuggestions/zsh-autosuggestions.zsh)
|
||||||
|
|
||||||
|
for plugin in "${plugins[@]}"; do
|
||||||
|
if [[ -f "$ZDOTDIR/plugins/$plugin" ]]; then
|
||||||
|
source "$ZDOTDIR/plugins/$plugin"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
bindkey -e
|
bindkey -e
|
||||||
# zshrc aliases
|
# zshrc aliases
|
||||||
alias ls='ls --color=auto'
|
alias ls='ls --color=auto'
|
||||||
|
|||||||
1
zsh/.config/zsh/plugins/zsh-autosuggestions
Submodule
1
zsh/.config/zsh/plugins/zsh-autosuggestions
Submodule
Submodule zsh/.config/zsh/plugins/zsh-autosuggestions added at 146020d9b2
Reference in New Issue
Block a user