Few fixes

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

1
.gitignore vendored
View File

@ -1,5 +1,6 @@
zsh/extraconfig.zsh
zsh/env.zsh
bash/extraconfig.bash
nvim/lua/extraconfig.lua
.data
bin-extra

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")