feat: add neovim config

This commit is contained in:
uku 2024-11-17 09:58:51 +01:00
parent 8901317d40
commit 5a13b64f2f
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
3 changed files with 101 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
unzip
(lua5_1.withPackages (ps: with ps; [luarocks]))
];
hm.programs.neovim = {
enable = true;
extraLuaConfig = builtins.readFile ./init.lua;
};
}