feat: nixvim config
currently only for dnsc-air. can simply be imported in other hosts
This commit is contained in:
parent
ff32ecb811
commit
6543d4a7f3
21 changed files with 1541 additions and 10 deletions
26
modules/nixvim/default.nix
Normal file
26
modules/nixvim/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ ... }:
|
||||
|
||||
# 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
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue