aboutsummaryrefslogtreecommitdiffstats
path: root/users/sils/neovim/default.nix
blob: c9e5ed51b61944ad5f492f37606c1fb61c7ccc0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  programs.neovim = {
    enable = true;
    defaultEditor = true;
    viAlias = true;
    vimAlias = true;
    vimdiffAlias = true;
    extraLuaConfig = builtins.readFile ./lua/options.lua;
    extraConfig = ''
      inoremap jj <esc>
      vnoremap jj <esc>
    '';
  };
}