config/homes/common/neovim.nix

11 lines
214 B
Nix
Raw Normal View History

{ inputs, pkgs, ... }:
{
home.packages = [
inputs.editor.packages.${pkgs.stdenv.hostPlatform.system}.default
];
programs.zsh.shellAliases.vimdiff = "nvim -d";
home.sessionVariables.EDITOR = "nvim";
}