nix-dotfiles/snippets/neovim.nix
vorboyvo b7261af069 Moved programs/ to snippets/ and made necessary modifications in config.
Edited clifmrc to make 'x' command work somewhat.
2024-11-29 16:31:36 -05:00

10 lines
222 B
Nix

{
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
withPython3 = true;
extraPython3Packages = pyPkgs: with pyPkgs; [ virtualenv ];
extraLuaConfig = builtins.readFile ./neovim/init.lua;
}