mrflos-nixos-config-fork/dotfiles/nvim/lua/plugins/mrflos.lua
2024-01-30 22:11:40 +03:00

31 lines
613 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,
},
},
},
},
{ "lukas-reineke/indent-blankline.nvim", enabled = false },
{ "echasnovski/mini.indentscope", enabled = false },
}