mrflos-nixos-config-fork/dotfiles/nvim/lua/plugins/mrflos.lua

37 lines
707 B
Lua
Raw Normal View History

2023-12-21 13:02:24 +00:00
return {
-- theme Rosé Pine
{ "rose-pine/neovim", name = "rose-pine" },
2023-12-21 13:02:24 +00:00
-- Configure LazyVim to load theme
{
"LazyVim/LazyVim",
opts = {
colorscheme = "rose-pine",
},
},
2023-12-29 19:43:20 +00:00
-- 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,
},
},
filesystem = {
filtered_items = {
visible = true,
},
},
},
},
{ "lukas-reineke/indent-blankline.nvim", enabled = false },
{ "echasnovski/mini.indentscope", enabled = false },
2023-12-21 13:02:24 +00:00
}