Split plugins into files by category
This commit is contained in:
35
.config/nvim/lua/plugins/view.lua
Normal file
35
.config/nvim/lua/plugins/view.lua
Normal 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 = {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user