add more plugins and change theme
This commit is contained in:
parent
b292e2a418
commit
2222eb9b35
5 changed files with 33 additions and 12 deletions
12
lua/custom/plugins/filetree.lua
Normal file
12
lua/custom/plugins/filetree.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
'nvim-neo-tree/neo-tree.nvim',
|
||||
version = '*',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
'MunifTanjim/nui.nvim',
|
||||
},
|
||||
config = function ()
|
||||
require('neo-tree').setup {}
|
||||
end
|
||||
}
|
||||
8
lua/custom/plugins/theme.lua
Normal file
8
lua/custom/plugins/theme.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
'catppuccin/nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'catppuccin'
|
||||
end,
|
||||
}
|
||||
|
||||
4
lua/custom/plugins/vim-tmux-navigator.lua
Normal file
4
lua/custom/plugins/vim-tmux-navigator.lua
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
return {
|
||||
'christoomey/vim-tmux-navigator',
|
||||
lazy = false,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue