Refactored nvim config to make it easier and less insanely nested

This commit is contained in:
2025-04-24 11:36:39 +03:00
parent dbd9a6fdd0
commit 6bef8f32b1
75 changed files with 17 additions and 17 deletions

View File

@@ -0,0 +1,14 @@
return {
'hrsh7th/nvim-cmp',
event = 'InsertEnter',
dependencies = {
'onsails/lspkind.nvim', -- icons for completion type
'hrsh7th/cmp-path', -- complete filepaths
'hrsh7th/cmp-nvim-lsp', -- lsp source for nvim-cmp
'saadparwaiz1/cmp_luasnip', -- snippets source for nvim-cmp
{ 'L3MON4D3/LuaSnip', build = 'make install_jsregexp' }, -- snippets plugin
},
config = function()
require('cmp_helper')
end,
}