Few fixes

This commit is contained in:
2025-07-09 14:20:40 +02:00
parent c901996ca0
commit c905f725df
2 changed files with 8 additions and 0 deletions

View File

@@ -137,6 +137,10 @@ vim.keymap.set('v', '<Tab>', function()
end
end, { silent = true, expr = true })
-- Disable focus on infos
vim.lsp.handlers["textDocument/hover"] = vim.lsp.with(
vim.lsp.handlers.hover, { focusable = false }
)
vim.api.nvim_create_autocmd("LspAttach", {
callback = function(args)
@@ -225,3 +229,6 @@ vim.lsp.config['java'] = {
}
vim.lsp.enable('java')
-- Import custom config
require("extraconfig")