osbm-nvim/plugins/default.nix
2025-03-07 16:32:50 +03:00

29 lines
560 B
Nix

{
imports = [
./mini.nix
./lsp
];
plugins = {
treesitter = {
enable = true;
# folding = true; # i dont like the way it starts neovim with everything folded
};
todo-comments.enable = true;
lualine.enable = true;
cmp = {
# TODO read what this does
# basically, it's a completion plugin
enable = true;
autoEnableSources = true;
};
oil.enable = true; # shell scripting
#telescope
telescope.enable = true;
web-devicons.enable = true; # be concious of this choice
};
}