Vim: LSP fidget and gitgutter

This commit is contained in:
Filippo Berto 2024-01-14 09:02:49 +01:00
parent af1f453962
commit 7ffee1baa6
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056

View file

@ -11,6 +11,7 @@ let vp = pkgs.vimPlugins; in {
# # Git related plugins # # Git related plugins
# vp.fugitive # vp.fugitive
# vp.rhubarb # vp.rhubarb
vp.gitgutter
# vp.lsp-zero-nvim # vp.lsp-zero-nvim
# vp.nvim-cmp # vp.nvim-cmp
@ -51,10 +52,10 @@ let vp = pkgs.vimPlugins; in {
vp.dressing-nvim # Better UI for input and selection vp.dressing-nvim # Better UI for input and selection
# Tree view # Tree view
# vp.nerdtree-git-plugin
# vp.vim-devicons
# vp.nerdtree
# vp.chadtree # vp.chadtree
vp.nerdtree-git-plugin
vp.vim-devicons
vp.nerdtree
vp.cmp-buffer # source for text in buffer vp.cmp-buffer # source for text in buffer
vp.cmp-path # source for file system path vp.cmp-path # source for file system path
@ -79,7 +80,14 @@ let vp = pkgs.vimPlugins; in {
# } # }
# # LSP # # LSP
vp.fidget-nvim # fidget moving while LSP is working # fidget moving while LSP is working
{
plugin = vp.fidget-nvim;
type = "lua";
config = ''
require("fidget").setup({})
'';
}
# vp.neodev-nvim # vp.neodev-nvim
# # vp.nvim-lspconfig # # vp.nvim-lspconfig
vp.cmp-nvim-lsp vp.cmp-nvim-lsp