aboutsummaryrefslogtreecommitdiff
path: root/modules/neovim/nvim
diff options
context:
space:
mode:
Diffstat (limited to 'modules/neovim/nvim')
-rw-r--r--modules/neovim/nvim/lua/config/lsp.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/neovim/nvim/lua/config/lsp.lua b/modules/neovim/nvim/lua/config/lsp.lua
index 3313fff..be50537 100644
--- a/modules/neovim/nvim/lua/config/lsp.lua
+++ b/modules/neovim/nvim/lua/config/lsp.lua
@@ -18,7 +18,7 @@ require('blink.cmp').setup({
},
menu = {
border = "rounded",
- auto_show = true,
+ auto_show = false,
},
documentation = { window = { border = 'rounded' } },
},
@@ -47,9 +47,9 @@ vim.api.nvim_create_autocmd("LspAttach", { callback = function(args)
end, { desc = "Goto definition (LSP)" })
vim.keymap.set('n', 'E', '<cmd>lua vim.lsp.buf.hover()<CR>', { silent = true })
- if client:supports_method(methods.textDocument_inlayHint) then
- vim.lsp.inlay_hint.enable()
- end
+ -- if client:supports_method(methods.textDocument_inlayHint) then
+ -- vim.lsp.inlay_hint.enable()
+ -- end
if client:supports_method(methods.textDocument_formatting) then
vim.api.nvim_create_autocmd("BufWritePre", {