Updating neovim config from kickstart baseline.

This commit is contained in:
2025-10-07 20:26:04 -07:00
parent b5ab96bb3d
commit e16aac3dfa
27 changed files with 83 additions and 1362 deletions

View File

@@ -0,0 +1,3 @@
return {
'catppuccin/nvim', name = 'catppuccin', priority = 1000
}

View File

@@ -0,0 +1,15 @@
return {
{
"nvim-neo-tree/neo-tree.nvim",
version = "*",
dependencies = {
"nvim-lua/plenary.nvim",
"MunifTanjim/nui.nvim",
"nvim-tree/nvim-web-devicons", -- optional, but recommended
},
lazy = false, -- neo-tree will lazily load itself
keys = {
{ '<leader>d', ':Neotree toggle<CR>', desc = 'NeoTree toggle', silent = true }
}
}
}

View File

@@ -0,0 +1,4 @@
return {
'nvim-telescope/telescope.nvim', tag = '0.1.8',
dependencies = { 'nvim-lua/plenary.nvim' }
}