Merge pull request #49026 from schmittlauch/doc-vim

clarifying `name` arg determines vim command name
This commit is contained in:
Jörg Thalheim
2018-10-25 17:51:06 +01:00
committed by GitHub
+4
View File
@@ -23,6 +23,7 @@ Adding custom .vimrc lines can be done using the following code:
``` ```
vim_configurable.customize { vim_configurable.customize {
# `name` specifies the name of the executable and package
name = "vim-with-plugins"; name = "vim-with-plugins";
vimrcConfig.customRC = '' vimrcConfig.customRC = ''
@@ -31,6 +32,8 @@ vim_configurable.customize {
} }
``` ```
This configuration is used when vim is invoked with the command specified as name, in this case `vim-with-plugins`.
For Neovim the `configure` argument can be overridden to achieve the same: For Neovim the `configure` argument can be overridden to achieve the same:
``` ```
@@ -83,6 +86,7 @@ The resulting package can be added to `packageOverrides` in `~/.nixpkgs/config.n
{ {
packageOverrides = pkgs: with pkgs; { packageOverrides = pkgs: with pkgs; {
myVim = vim_configurable.customize { myVim = vim_configurable.customize {
# `name` specifies the name of the executable and package
name = "vim-with-plugins"; name = "vim-with-plugins";
# add here code from the example section # add here code from the example section
}; };