From 39442404769e526f9bbb99e0cd82e79db83fc37c Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Fri, 2 Sep 2022 00:50:48 +0200 Subject: [PATCH] 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 --- doc/languages-frameworks/vim.section.md | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/doc/languages-frameworks/vim.section.md b/doc/languages-frameworks/vim.section.md index 9062fb7d361b..121df6ad784c 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}