diff --git a/nvim/dotfiles/plugins-list.vim b/nvim/dotfiles/plugins-list.vim index fd4b244..87daec8 100644 --- a/nvim/dotfiles/plugins-list.vim +++ b/nvim/dotfiles/plugins-list.vim @@ -65,6 +65,7 @@ if g:vim_ide Plug 'neoclide/coc.nvim', { 'branch': 'release' } Plug 'dag/vim2hs' + Plug 'norcalli/nvim-colorizer.lua' endif " }}} diff --git a/nvim/plugin/git.vim b/nvim/plugin/git.vim index 901d487..c986e7b 100644 --- a/nvim/plugin/git.vim +++ b/nvim/plugin/git.vim @@ -7,7 +7,7 @@ nnoremap gb :Git blame nnoremap gw :GBrowse nnoremap gW :.GBrowse - nnoremap gc :Gcommit % + nnoremap gc :Git commit % nnoremap gl :Gclog nnoremap gp :Git push " }}} diff --git a/zsh/path.zsh b/zsh/path.zsh index fff9b36..02da266 100644 --- a/zsh/path.zsh +++ b/zsh/path.zsh @@ -89,7 +89,7 @@ if [[ -f ~/.rustup/settings.toml ]]; then if [[ -n "$rust_toolchain" ]]; then rust_sysroot=~/.rustup/toolchains/"$rust_toolchain" - path_prepend path "$rust_sysroot"/bin + # path_append path "$rust_sysroot"/bin path_prepend fpath "$rust_sysroot"/zsh/site-functions path_prepend manpath "$rust_sysroot"/share/man path_prepend ld_library_path "$rust_sysroot"/lib