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