about summary refs log tree commit diff
path: root/doc/languages-frameworks/vim.section.md
diff options
context:
space:
mode:
authorMatthieu Coudron <mcoudron@hotmail.com>2022-09-02 00:50:48 +0200
committerMatthieu Coudron <mcoudron@hotmail.com>2022-09-11 18:11:16 +0200
commit39442404769e526f9bbb99e0cd82e79db83fc37c (patch)
treeb35a0970e5721101c0b2776ec41db322c0aa5795 /doc/languages-frameworks/vim.section.md
parent584bc20aa051dedba29d6e7732cab2aacbf8bdcc (diff)
doc(neovim): remove the mention of plug for neovim
This was removed to simplify configuration. One could create a function that converts the plug format to vim native package format (only plugin system supported for neovim)  and upstream it to nixpkgs if that's an issue
Diffstat (limited to 'doc/languages-frameworks/vim.section.md')
-rw-r--r--doc/languages-frameworks/vim.section.md14
1 files changed, 1 insertions, 13 deletions
diff --git a/doc/languages-frameworks/vim.section.md b/doc/languages-frameworks/vim.section.md
index 9062fb7d361b7..121df6ad784ca 100644
--- a/doc/languages-frameworks/vim.section.md
+++ b/doc/languages-frameworks/vim.section.md
@@ -196,20 +196,8 @@ vim_configurable.customize {
 }
 ```
 
-For Neovim the syntax is:
+Note: this is not possible anymore for neovim.
 
-```nix
-neovim.override {
-  configure = {
-    customRC = ''
-      # your custom configuration goes here! 
-    '';
-    plug.plugins = with pkgs.vimPlugins; [
-      vim-go
-    ];
-  };
-}
-```
 
 ## Adding new plugins to nixpkgs {#adding-new-plugins-to-nixpkgs}