summary refs log tree commit diff stats
path: root/hm/neovim/default.nix
blob: 947f0bf8ba32f808998a9d403f04728592276c23 (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
    #    ];
  };
}