separate config into files

This commit is contained in:
2025-03-18 11:45:00 -05:00
parent 469864dd50
commit 594ead9898
6 changed files with 428 additions and 400 deletions

36
config/plugins.nix Normal file
View File

@@ -0,0 +1,36 @@
{ pkgs, ... }: {
plugins = {
lualine.enable = true;
luasnip.enable = true;
barbar.enable = true;
nvim-tree.enable = true;
noice.enable = true;
mini.enable = true;
notify.enable = true;
telescope.enable = true;
treesitter = {
enable = true;
settings = {
highlight.enable = true;
grammarPackages = pkgs.vimPlugins.nvim-treesitter.passthru.allGrammars ++ [
pkgs.vimPlugins.nvim-treesitter-parsers.glsl
];
};
};
render-markdown.enable = true;
web-devicons.enable = true;
};
}