mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-19 03:02:17 +00:00
31 lines
491 B
Nix
31 lines
491 B
Nix
{
|
|
imports = [
|
|
./barbar.nix
|
|
./comment.nix
|
|
./floaterm.nix
|
|
./gitsigns.nix
|
|
./harpoon.nix
|
|
./lsp.nix
|
|
./md-preview.nix
|
|
./neo-tree.nix
|
|
./telescope.nix
|
|
./treesitter.nix
|
|
./trim.nix
|
|
];
|
|
|
|
programs.nixvim = {
|
|
colorschemes.cyberdream.enable = true;
|
|
|
|
plugins = {
|
|
web-devicons.enable = true;
|
|
|
|
nvim-autopairs.enable = true;
|
|
|
|
nvim-colorizer = {
|
|
enable = true;
|
|
userDefaultOptions.names = false;
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|