aboutsummaryrefslogtreecommitdiffstats
path: root/users/sils/neovim/default.nix
blob: 9691d36fbeebc212550dfa1c7fb54925df7b2575 (plain) (blame)
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
  #    ];
  };
}