1
0

Split plugins into files by category

This commit is contained in:
2025-09-21 18:21:43 +02:00
parent f33ecb78ee
commit 78698d82e6
13 changed files with 259 additions and 267 deletions

View File

@@ -0,0 +1,35 @@
return {
{
'sainnhe/sonokai',
config = function()
vim.g.sonokai_style = "maia"
vim.cmd('colorscheme sonokai')
end
},
{
'nvim-lualine/lualine.nvim',
dependencies = {'nvim-tree/nvim-web-devicons'},
opts = {
options = {
theme = 'sonokai'
},
extensions = {'quickfix', 'nvim-tree', 'fugitive'},
sections = {
lualine_c = {
'filename'
}
}
}
},
{
'kyazdani42/nvim-tree.lua',
dependencies = {'nvim-tree/nvim-web-devicons'},
lazy = false,
keys = {
{ "<C-n>", ":NvimTreeToggle<CR>" },
{ "<leader>r", ":NvimTreeRefresh<CR>" },
{ "<leader>n", ":NvimTreeFindFile<CR>" },
},
opts = {}
}
}