Merge pull request #53447 from timokau/neovim-qt-wrapper

neovim-qt: wrap in separate derivation
This commit is contained in:
Peter Hoeg
2019-01-08 20:24:03 +08:00
committed by GitHub
2 changed files with 79 additions and 52 deletions
+15
View File
@@ -46,6 +46,21 @@ neovim.override {
}
```
If you want to use `neovim-qt` as a graphical editor, you can configure it by overriding neovim in an overlay
or passing it an overridden neovimn:
```
neovim-qt.override {
neovim = neovim.override {
configure = {
customRC = ''
# your custom configuration
'';
};
};
}
```
## Managing plugins with Vim packages
To store you plugins in Vim packages (the native vim plugin manager, see `:help packages`) the following example can be used: