nixos/modules/shell/neovim.nix

10 lines
128 B
Nix
Raw Normal View History

2025-02-03 07:55:17 +01:00
_: {
config = {
2025-03-07 10:12:35 +01:00
programs.neovim = {
enable = true;
2025-02-03 07:55:17 +01:00
vimAlias = true;
2025-03-07 10:12:35 +01:00
defaultEditor = true;
};
2025-02-03 07:55:17 +01:00
};
}