37 lines
650 B
Nix
37 lines
650 B
Nix
{ inputs, ... }: {
|
|
imports = [
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
./auto-pairs.nix
|
|
./options.nix
|
|
#./bufferline.nix
|
|
./telescope.nix
|
|
./nvim-tree.nix
|
|
./lightline.nix
|
|
./git.nix
|
|
./cmp.nix
|
|
./none-ls.nix
|
|
./wilder.nix
|
|
./lsp.nix
|
|
./treesitter.nix
|
|
./toggleterm.nix
|
|
./copilot.nix
|
|
./obsidian.nix
|
|
./whichkey.nix
|
|
./alpha.nix
|
|
./keymaps.nix
|
|
./comment.nix
|
|
./oil.nix
|
|
./trouble.nix
|
|
./tmux-navigator.nix
|
|
];
|
|
|
|
programs.nixvim = {
|
|
enable = true;
|
|
colorschemes.catppuccin = {
|
|
enable = true;
|
|
settings = { transparent_background = true; };
|
|
};
|
|
};
|
|
|
|
}
|