[Nix-dev] Configuring vim with override

Jookia 166291 at gmail.com
Wed Mar 2 00:00:00 CET 2016


On Wed, Mar 02, 2016 at 12:08:05AM +0300, Nikita Karetnikov wrote:
> I'd like to enable cscope and clipboard support in vim by editing only the
> configuration.nix file.  If I understand the NixOS manual correctly, it should
> look like this:
>
> [...]
>
> No luck, though.  What's the right way?

vim_configurable is used like this:

  myVim = pkgs.vim_configurable.merge {
    features = "huge"; # one of  tiny, small, normal, big or huge
    gui = "gtk";
    cfg = {
      pythonSupport = true;
      python3Support = true;
      multibyteSupport = true;
    };
    flags = {
      xim.enable = true;
    };
  };

Jookia.


More information about the nix-dev mailing list