separate config into files
This commit is contained in:
36
config/plugins.nix
Normal file
36
config/plugins.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user