28 lines
494 B
Lua
28 lines
494 B
Lua
return {
|
|
-- theme Rosé Pine
|
|
{ 'rose-pine/neovim', name = 'rose-pine' },
|
|
|
|
-- Configure LazyVim to load theme
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "rose-pine",
|
|
},
|
|
},
|
|
|
|
-- Neotree plugin
|
|
{
|
|
"nvim-neo-tree/neo-tree.nvim",
|
|
opts = {
|
|
close_if_last_window = true,
|
|
event_handlers = {
|
|
{
|
|
event = "file_opened",
|
|
handler = function()
|
|
vim.cmd([[Neotree close]])
|
|
end,
|
|
},
|
|
}
|
|
},
|
|
},
|
|
}
|