neovim to be managed home-manager instead of Lazy

This commit is contained in:
2023-10-17 11:28:12 +02:00
parent 618a923165
commit 95ba2a9ee0
9 changed files with 19 additions and 113 deletions

View File

@@ -0,0 +1,15 @@
{ inputs, pkgs, ... }:
{
programs.neovim =
let
toLua = str: "lua << EOF\n${str}\nEOF\n";
toLuaFile = file: "lua << EOF\n${builtins.readFile file}\nEOF\n";
in
{
enable = true;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
};
}