feat(neovim): replace gitgutter with gitsigns
This commit is contained in:
parent
5a84c27334
commit
3bfd20b1e9
|
@ -57,8 +57,9 @@ in {
|
||||||
vim-easymotion
|
vim-easymotion
|
||||||
vim-which-key
|
vim-which-key
|
||||||
vim-peekaboo
|
vim-peekaboo
|
||||||
vim-gitgutter
|
|
||||||
vim-fugitive
|
vim-fugitive
|
||||||
|
plenary-nvim
|
||||||
|
gitsigns-nvim
|
||||||
vim-test
|
vim-test
|
||||||
auto-pairs
|
auto-pairs
|
||||||
camelcasemotion
|
camelcasemotion
|
||||||
|
@ -81,6 +82,7 @@ in {
|
||||||
extraConfig = with builtins;
|
extraConfig = with builtins;
|
||||||
readFile ./init.vim # + readFile ./vim-surround-fix.vim
|
readFile ./init.vim # + readFile ./vim-surround-fix.vim
|
||||||
+ readFile ./which-key.vim + readFile ./test.vim
|
+ readFile ./which-key.vim + readFile ./test.vim
|
||||||
|
+ vimLua (readFile ./gitsigns.lua)
|
||||||
+ vimLua (readFile ./lsp/extensions.lua) + readFile ./lsp/lsp.vim
|
+ vimLua (readFile ./lsp/extensions.lua) + readFile ./lsp/lsp.vim
|
||||||
+ vimLua (readFile ./lsp/lsp.lua) + vimLua (readFile ./treesitter.lua);
|
+ vimLua (readFile ./lsp/lsp.lua) + vimLua (readFile ./treesitter.lua);
|
||||||
withNodeJs = true;
|
withNodeJs = true;
|
||||||
|
|
1
home/editors/neovim/gitsigns.lua
Normal file
1
home/editors/neovim/gitsigns.lua
Normal file
|
@ -0,0 +1 @@
|
||||||
|
require('gitsigns').setup()
|
Loading…
Reference in a new issue