neovim-confs/lua/custom/plugins/lsp.lua

22 lines
537 B
Lua
Raw Normal View History

2024-07-04 12:41:35 +02:00
return {
{
'neovim/nvim-lspconfig',
config = function()
2024-07-04 14:43:32 +02:00
require 'custom.plugins.configs.lsp'
2024-07-04 12:41:35 +02:00
end,
},
2024-07-04 14:43:32 +02:00
-- See `:help gitsigns` to understand what the configuration keys do
{ -- Adds git related signs to the gutter, as well as utilities for managing changes
'lewis6991/gitsigns.nvim',
opts = {
signs = {
add = { text = '+' },
change = { text = '~' },
delete = { text = '_' },
topdelete = { text = '' },
changedelete = { text = '~' },
},
},
},
2024-07-04 12:41:35 +02:00
}