flake/home/applications/neovim/default.nix

16 lines
392 B
Nix
Raw Normal View History

{pkgs, ...}: {
2024-01-03 20:35:08 +00:00
home.packages = [pkgs.lunarvim];
2023-11-05 09:21:37 +00:00
programs.neovim = {
enable = true;
#defaultEditor = true;
viAlias = true;
vimAlias = true;
};
xdg.configFile."nvim".source = pkgs.fetchFromGitHub {
owner = "Guanran928";
repo = "nvim";
rev = "655e863d2548cf9883e94e837f803ed2ae0d6aec";
hash = "sha256-EYArlahHMWj4yVXTKldVZsbHjg0gxvXqgTxO5BvEfQ8=";
};
2023-11-05 09:21:37 +00:00
}