feat: add fugitive and neo-tree

This commit is contained in:
2026-04-25 15:59:14 +02:00
parent 0ceb477a95
commit 56243dacb3
8 changed files with 84 additions and 8 deletions
+15 -1
View File
@@ -5,4 +5,18 @@
---@module 'lazy'
---@type LazySpec
return {}
return {
{
'nvim-neo-tree/neo-tree.nvim',
branch = 'v3.x',
dependencies = {
'nvim-lua/plenary.nvim',
'MunifTanjim/nui.nvim',
'nvim-tree/nvim-web-devicons',
},
lazy = false,
},
{
'tpope/vim-fugitive',
},
}
+11
View File
@@ -0,0 +1,11 @@
---@module 'lazy'
---@type LazySpec
return {
'L3MON4D3/LuaSnip',
config = function(_, opts)
local luasnip = require 'luasnip'
luasnip.config.setup(opts or {})
require 'snippets.cpp'
end,
}