mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 13:15:30 +03:00
doc: add neovim-qt configuration
This commit is contained in:
parent
ee9bc405b9
commit
c52c4a00a2
1 changed files with 15 additions and 0 deletions
|
@ -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
|
## 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:
|
To store you plugins in Vim packages (the native vim plugin manager, see `:help packages`) the following example can be used:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue