From 0ce30126c059280c7ad42c507d0be34b52368547 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Sat, 20 Feb 2021 13:45:57 +0200 Subject: [PATCH 1/3] [nvim] apparently :Gcommit has also been deprecated? --- nvim/plugin/git.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 " }}} From a5f7bd35655f421b65138c7ef70ad54a107a8c38 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Sat, 20 Feb 2021 13:46:11 +0200 Subject: [PATCH 2/3] [nvim] add a plugin for highlighting CSS colors --- nvim/dotfiles/plugins-list.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/nvim/dotfiles/plugins-list.vim b/nvim/dotfiles/plugins-list.vim index 80028a8..17e70ff 100644 --- a/nvim/dotfiles/plugins-list.vim +++ b/nvim/dotfiles/plugins-list.vim @@ -63,5 +63,6 @@ if g:vim_ide Plug 'neoclide/coc.nvim', { 'branch': 'release' } Plug 'dag/vim2hs' + Plug 'norcalli/nvim-colorizer.lua' endif " }}} From d597858ccee6a70a10b850da583f9fd58861de71 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Sat, 20 Feb 2021 13:46:27 +0200 Subject: [PATCH 3/3] [zsh] stop adding the 'bin' directory of Rustup toolchains to the PATH, this broke per-directory overrides because those rely on toolchain executables being symlinked to the rustup exe itself --- zsh/path.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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