Updating neovim config from kickstart baseline.
This commit is contained in:
3
config/nvim/lua/plugins/catppuccin.lua
Normal file
3
config/nvim/lua/plugins/catppuccin.lua
Normal file
@@ -0,0 +1,3 @@
|
||||
return {
|
||||
'catppuccin/nvim', name = 'catppuccin', priority = 1000
|
||||
}
|
||||
15
config/nvim/lua/plugins/neotree.lua
Normal file
15
config/nvim/lua/plugins/neotree.lua
Normal 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 }
|
||||
}
|
||||
}
|
||||
}
|
||||
4
config/nvim/lua/plugins/telescope.lua
Normal file
4
config/nvim/lua/plugins/telescope.lua
Normal file
@@ -0,0 +1,4 @@
|
||||
return {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.8',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' }
|
||||
}
|
||||
Reference in New Issue
Block a user