Improve LSP configs and change keybindings to align with default nvim

0.11 ones
This commit is contained in:
Fábio André Damas 2025-03-27 10:47:46 +00:00
parent f9f53656f7
commit 0eea4c8dab
33 changed files with 656 additions and 553 deletions

View file

@ -1,9 +1,10 @@
return {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
init = function()
require("tokyonight").setup({transparent = true, dim_inactive = true, lualine_bold = true})
vim.cmd("colo tokyonight-night")
end
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
init = function()
require("tokyonight").setup({ transparent = true, dim_inactive = true, lualine_bold = true })
vim.cmd("colo tokyonight-night")
end
}