feat: add neovim config
This commit is contained in:
parent
d7ff44563c
commit
a3c8b1ecab
3 changed files with 74 additions and 0 deletions
10
programs/neovim/default.nix
Normal file
10
programs/neovim/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
(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