Manually maintain nvim configuration

This commit is contained in:
ItsDrike 2024-07-08 23:29:55 +02:00
parent e6dca578ed
commit 7946325fa9
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
2 changed files with 2 additions and 14 deletions

View file

@ -1,5 +1,5 @@
{pkgs, ...}: {
# TODO: Consider switching to nixvim, this is a temporary solution
# TODO: Consider switching to nixvim
programs.neovim = {
enable = true;
@ -19,16 +19,4 @@
gcc
];
};
# Running `nvim --headless +q` is recommended
# before opening neovim for the first time
home.file."./.config/nvim" = {
source = pkgs.fetchFromGitHub {
owner = "ItsDrike";
repo = "AstroNvimUser";
rev = "v0.1.2";
sha256 = "sha256-PPejIy8BGxilcFAvBZQVfVDwTNEm1Tu6e0AlzIZbYXY=";
};
recursive = true;
};
}