Vim: Difference between revisions

imported>IgorM
m Added category
imported>Presto8
programs.neovim.configure is deprecated; configure.customRC -> programs.neovim.extraConfig
Line 105: Line 105:
     (neovim.override {
     (neovim.override {
       vimAlias = true;
       vimAlias = true;
      extraConfig = ''
        " your custom vimrc
        set nocompatible
        set backspace=indent,eol,start
        " ...
      '';
       configure = {
       configure = {
         packages.myPlugins = with pkgs.vimPlugins; {
         packages.myPlugins = with pkgs.vimPlugins; {
Line 110: Line 116:
           opt = [];
           opt = [];
         };
         };
        customRC = ''
          " your custom vimrc
          set nocompatible
          set backspace=indent,eol,start
          " ...
        '';
       };
       };
     }
     }