From 2b9b97ca70a7eb6121489f5ba2b40ee3077f332b Mon Sep 17 00:00:00 2001 From: Stefan Weigl-Bosker Date: Sun, 23 Mar 2025 18:25:59 -0400 Subject: update --- modules/neovim/nvim/lua/config/lsp.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/neovim/nvim/lua/config/lsp.lua') 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', 'lua vim.lsp.buf.hover()', { 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", { -- cgit v1.2.3