mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
11 lines
228 B
Nix
11 lines
228 B
Nix
{...}: let
|
|
alias = {"v" = "nvim";};
|
|
in {
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
};
|
|
programs.fish.shellAbbrs = alias;
|
|
programs.bash.shellAliases = alias;
|
|
programs.zsh.shellAliases = alias;
|
|
}
|