nix-config/modules/nixvim/default.nix
Dennis 6543d4a7f3 feat: nixvim config
currently only for dnsc-air. can simply be imported in other hosts
2026-02-04 19:03:10 +01:00

26 lines
453 B
Nix

{ ... }:
# These options are imported in nixvim.imports and therefore
# every option here lives within `programs.nixvim`
{
enable = true;
defaultEditor = true;
# Setup some aliases
vimAlias = true;
vimdiffAlias = true;
imports = [
./colorscheme.nix
./completion.nix
./editing.nix
./picker.nix
./formatter.nix
./git.nix
./lsp.nix
./options.nix
./statusline.nix
./keybindings.nix
./ai.nix
];
}