feat: add neovim config
This commit is contained in:
parent
8901317d40
commit
5a13b64f2f
3 changed files with 101 additions and 0 deletions
11
programs/neovim/default.nix
Normal file
11
programs/neovim/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue