14 lines
187 B
Nix
14 lines
187 B
Nix
{ ... }: {
|
|
|
|
xdg.configFile."nvim" = {
|
|
source = ./config;
|
|
recursive = true;
|
|
};
|
|
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
vimAlias = true;
|
|
};
|
|
|
|
}
|