flake/home/applications/neovim/default.nix

25 lines
472 B
Nix
Raw Normal View History

2024-02-19 20:15:22 +00:00
{
pkgs,
inputs,
...
}: {
home.packages = [
2024-04-10 11:27:13 +00:00
(inputs.neovim.packages.${pkgs.stdenv.hostPlatform.system}.default.override {
viAlias = true;
vimAlias = true;
})
2024-02-19 20:15:22 +00:00
#pkgs.lunarvim
];
2024-02-29 19:17:14 +00:00
home.sessionVariables."EDITOR" = "nvim";
2024-04-10 11:27:13 +00:00
# TODO: still couldn't make it work
2024-02-19 20:15:22 +00:00
#programs.neovim = {
# enable = true;
# viAlias = true;
# vimAlias = true;
#
# package = inputs.neovim.packages.${pkgs.stdenv.hostPlatform.system}.default;
#};
2023-11-05 09:21:37 +00:00
}