1

Neovim: Disable nvim_lsp_signature_help cmp backend

It overlaps with noice documentation popup
This commit is contained in:
2024-09-22 22:27:39 +02:00
parent 436c010e9f
commit 0c4463ccac

View File

@ -287,7 +287,7 @@ in {
_cmp-cmdline _cmp-cmdline
_cmp-emoji _cmp-emoji
_cmp-nvim-lsp _cmp-nvim-lsp
_cmp-nvim-lsp-signature-help # _cmp-nvim-lsp-signature-help
_cmp-luasnip _cmp-luasnip
]; ];
config = mkDefaultConfig name; config = mkDefaultConfig name;
@ -296,9 +296,9 @@ in {
{name = "async_path";} {name = "async_path";}
{name = "emoji";} {name = "emoji";}
{name = "nvim_lsp";} {name = "nvim_lsp";}
{name = "nvim_lsp_signature_help";}
{name = "luasnip";} {name = "luasnip";}
# {name = "nvim_lsp_signature_help";}
# {name = "buffer";} # Too much noise # {name = "buffer";} # Too much noise
# {name = "cmdline";} # Using nui as cmdline completion backend # {name = "cmdline";} # Using nui as cmdline completion backend
]; ];
@ -420,6 +420,7 @@ in {
}; };
}; };
# Code formatting
conform = rec { conform = rec {
name = "conform"; name = "conform";
pkg = pkgs.vimPlugins.conform-nvim; pkg = pkgs.vimPlugins.conform-nvim;
@ -1184,7 +1185,7 @@ in {
config = mkDefaultConfig name; config = mkDefaultConfig name;
opts = { opts = {
presets = { presets = {
bottom_search = false; bottom_search = true;
command_palette = true; command_palette = true;
long_message_to_split = true; long_message_to_split = true;
inc_rename = true; inc_rename = true;
@ -1744,19 +1745,19 @@ in {
noice noice
rainbow-delimiters rainbow-delimiters
rustaceanvim rustaceanvim
sandwich sandwich # Manipulate pairs
sleuth sleuth # Heuristically set indent depth
telescope telescope
todo-comments todo-comments # Highlight TODOs
toggleterm toggleterm
treesitter treesitter
trim trim # Trim whitespace
trouble trouble # Diagnostics window
# twilight # NOTE: Don't like it # twilight # NOTE: Don't like it
ufo ufo # Code folding
vimtex vimtex
which-key which-key
winshift winshift # Move windows around
yanky yanky
]; ];
}; };