1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{pkgs, ...}: { programs.neovim = { enable = true; defaultEditor = true; viAlias = true; vimAlias = true; vimdiffAlias = true; #extraLuaConfig = builtins.readFile ./lua/options.lua; # extraConfig = '' # inoremap jj <esc> # ''; # plugins = with pkgs.vimPlugins; [ # neo-tree-nvim # ]; }; }