configured lsp plugins

This commit is contained in:
venus
2026-03-10 02:12:25 -05:00
parent d223037865
commit be84313c2c
8 changed files with 106 additions and 15 deletions

View File

@@ -24,6 +24,7 @@ require("lazy").setup({
'TamaMcGlinn/vim-termhere', --simple terminal QOL
"smjonas/inc-rename.nvim", --lsp plugin for renaming variable
'basola21/PDFview', -- rendering pdfs in nvim
'preservim/nerdtree',
{ 'norcalli/nvim-colorizer.lua', config = function() require('colorizer').setup{"*"} end,}, -- preview colors
{'NMAC427/guess-indent.nvim', config = function() require('guess-indent').setup {} end,}, -- Detect tabstop and shiftwidth automatically
{ 'edluffy/hologram.nvim', auto_display = true,}, --image viewer
@@ -35,7 +36,7 @@ require("lazy").setup({
},
-- Configure any other settings here. See the documentation for more details.
-- colorscheme that will be used when installing plugins.
-- install = { colorscheme = { "habamax" } },
install = { colorscheme = { "miniautumn" } },
-- automatically check for plugin updates
checker = { enabled = true },
})
@@ -45,3 +46,5 @@ if theme_ok then
matugen.setup()
end
-- setup lsp
require("config.lsp")