summaryrefslogtreecommitdiffstats
path: root/doc/languages-frameworks/vim.section.md
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2019-01-05 13:58:00 +0100
committerTimo Kaufmann <timokau@zoho.com>2019-01-06 10:56:28 +0100
commitc52c4a00a28ce89562b00e77ba66f32393b079a3 (patch)
treec369d0d3b69815c1b019e680c0750c286956828c /doc/languages-frameworks/vim.section.md
parentee9bc405b9a231ca88ee13cc2da91f9080cb12ec (diff)
doc: add neovim-qt configuration
Diffstat (limited to 'doc/languages-frameworks/vim.section.md')
-rw-r--r--doc/languages-frameworks/vim.section.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/languages-frameworks/vim.section.md b/doc/languages-frameworks/vim.section.md
index 6ed60028ae20..e4c486a0e52e 100644
--- a/doc/languages-frameworks/vim.section.md
+++ b/doc/languages-frameworks/vim.section.md
@@ -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: