aboutsummaryrefslogtreecommitdiff
path: root/modules/neovim/nvim/lua/config
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-03-23 18:25:59 -0400
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-03-23 18:25:59 -0400
commit2b9b97ca70a7eb6121489f5ba2b40ee3077f332b (patch)
treed80b4197fd6aefb522b98e77f6a5bc7fe87d8ab3 /modules/neovim/nvim/lua/config
parent320f194acd371b401168d0c9aa399918c682c8de (diff)
downloadhome-2b9b97ca70a7eb6121489f5ba2b40ee3077f332b.tar.gz
update
Diffstat (limited to 'modules/neovim/nvim/lua/config')
-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", {