1
0

neovim changes

This commit is contained in:
2025-01-25 22:22:13 +01:00
parent 4c1db847d5
commit 565cbf064a
14 changed files with 253 additions and 199 deletions

View File

@@ -1,20 +1,36 @@
return {
-- Mason
{ 'williamboman/mason.nvim', opts = {}, cmd = 'Mason' },
{ 'williamboman/mason-lspconfig.nvim', opts = {} },
{ 'williamboman/mason.nvim', opts = {}, cmd = 'Mason', event = 'VeryLazy' },
{ 'williamboman/mason-lspconfig.nvim', opts = {}, event = 'VeryLazy' },
-- Lsp configuration
{ 'VonHeikemen/lsp-zero.nvim' },
{ 'neovim/nvim-lspconfig' },
-- Completion
{ 'hrsh7th/nvim-cmp', dependencies = { 'hrsh7th/cmp-calc', 'L3MON4D3/LuaSnip', 'hrsh7th/cmp-nvim-lsp', 'onsails/lspkind.nvim' } },
{
'hrsh7th/nvim-cmp',
event = 'VeryLazy',
dependencies = {
'hrsh7th/cmp-calc',
'hrsh7th/cmp-cmdline',
'hrsh7th/cmp-path',
'hrsh7th/cmp-buffer',
'L3MON4D3/LuaSnip',
'hrsh7th/cmp-nvim-lsp',
'onsails/lspkind.nvim',
},
},
-- Additions
{ 'ray-x/lsp_signature.nvim', event = 'VeryLazy', opts = {
hint_prefix = '',
} },
{
'ray-x/lsp_signature.nvim',
event = 'VeryLazy',
opts = {
hint_prefix = '',
},
},
-- Rust
{ 'mrcjkb/rustaceanvim' },
-- { 'mrcjkb/rustaceanvim' },
}