about summary refs log tree commit diff
path: root/pkgs/test/vim
diff options
context:
space:
mode:
authorMatthieu Coudron <teto@users.noreply.github.com>2022-06-13 15:25:46 +0200
committerGitHub <noreply@github.com>2022-06-13 15:25:46 +0200
commita1ad23574310f0ca7aedd916192855a3e2a46729 (patch)
treef265a6da7e929cc526ad891cf77160faa886b79a /pkgs/test/vim
parent5ed22350508f1fd0b79d56f39552a4ea5c163c2e (diff)
vimUtils: deprecate configure.pathogen (#154814)
pathogen does not bring any value compared to vim native packages so
remove it to ease maintainance burden.
Diffstat (limited to 'pkgs/test/vim')
-rw-r--r--pkgs/test/vim/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/test/vim/default.nix b/pkgs/test/vim/default.nix
index 2beb75391eade..73c25ae20cb84 100644
--- a/pkgs/test/vim/default.nix
+++ b/pkgs/test/vim/default.nix
@@ -23,11 +23,6 @@ in
     vimrcConfig.vam.pluginDictionaries = [{name = "vim-nix"; }];
   };
 
-  test_vim_with_vim_nix_using_pathogen = vim_configurable.customize {
-    name = "vim-with-vim-addon-nix-using-pathogen";
-    vimrcConfig.pathogen.pluginNames = [ "vim-nix" ];
-  };
-
   test_vim_with_vim_nix_using_plug = vim_configurable.customize {
     name = "vim-with-vim-addon-nix-using-plug";
     vimrcConfig.plug.plugins = with vimPlugins; [ vim-nix ];