Vim: Difference between revisions
imported>Dmayle Show how to manage spell fils |
imported>Sorrel →gvim and gview: document wrapGui |
||
| Line 251: | Line 251: | ||
<syntaxhighlight lang=bash> | <syntaxhighlight lang=bash> | ||
$ nix-env -iA nixos.vimHugeX | $ nix-env -iA nixos.vimHugeX | ||
</syntaxhighlight> | |||
If you are using <code>vim_configurable.customize</code>, you can enable <code>wrapGui</code> to make <code>gvim</code> available, though this won't give you <code>gview</code>: | |||
<syntaxhighlight lang=nix> | |||
vim_configured = pkgs.vim_configurable.customize { | |||
name = "vim"; | |||
wrapGui = true; | |||
}; | |||
</syntaxhighlight> | </syntaxhighlight> | ||