diff --git a/setup_zsh.sh b/setup_zsh.sh index a889300..1ca7b02 100644 --- a/setup_zsh.sh +++ b/setup_zsh.sh @@ -8,6 +8,7 @@ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM: git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions +git clone https://github.com/unixorn/fzf-zsh-plugin.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/fzf-zsh-plugin @@ -16,6 +17,9 @@ git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-m # Neovim sudo pacman -S neovim nodejs npm +pip3 install pynvim +pip2 install pynvim +sudo npm install -g neovim sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim' diff --git a/zsh/.zshrc b/zsh/.zshrc index 2fb1f4a..4562d08 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -75,7 +75,7 @@ ENABLE_CORRECTION="true" # Custom plugins may be added to $ZSH_CUSTOM/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) # Add wisely, as too many plugins slow down shell startup. -plugins=(git zsh-autosuggestions zsh-syntax-highlighting) +plugins=(git zsh-autosuggestions zsh-syntax-highlighting fzf-zsh-plugin) source $ZSH/oh-my-zsh.sh