Move plugins to apt file, use consistent style, configure nvim-tree

This commit is contained in:
Ajay Singh 2023-04-13 03:48:32 -04:00
parent 3e1619ad97
commit 67ab7dd9c8
2 changed files with 23 additions and 4 deletions

View file

@ -2,4 +2,15 @@
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
return {}
return {
-- gruvbox theme
{'morhetz/gruvbox', config = function() vim.cmd.colorscheme('gruvbox') end },
-- Noctis Theme
{ 'talha-akram/noctis.nvim', name = 'noctis' },
-- Catppuccin theme
{ 'catppuccin/nvim', name = 'catppuccin' },
-- nvim-tree
'nvim-tree/nvim-tree.lua',
'nvim-tree/nvim-web-devicons',
}