dotfiles/home/modules/tui/neovim/plugins/default.nix

32 lines
491 B
Nix
Raw Normal View History

2024-12-05 03:11:13 +00:00
{
imports = [
./barbar.nix
./comment.nix
./floaterm.nix
./gitsigns.nix
2024-12-05 03:11:13 +00:00
./harpoon.nix
./lsp.nix
./md-preview.nix
./neo-tree.nix
./telescope.nix
./treesitter.nix
./trim.nix
2024-12-05 03:11:13 +00:00
];
programs.nixvim = {
2024-12-05 04:54:38 +00:00
colorschemes.cyberdream.enable = true;
2024-12-05 03:11:13 +00:00
plugins = {
web-devicons.enable = true;
nvim-autopairs.enable = true;
nvim-colorizer = {
enable = true;
userDefaultOptions.names = false;
};
};
};
2024-12-05 04:54:38 +00:00
}