summary refs log tree commit diff
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-12-18 23:22:17 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-02-07 01:36:15 +0100
commit50e0012f9d576aed3765b0c540167513fa8c2fda (patch)
tree0641d7547c1b4397e6b15c4945ed4f6f4d56aca5 /pkgs/applications/editors/neovim
parent76672661b9b8cf731e2cd87984f701937e8df655 (diff)
downloadnixpkgs-50e0012f9d576aed3765b0c540167513fa8c2fda.tar
nixpkgs-50e0012f9d576aed3765b0c540167513fa8c2fda.tar.gz
nixpkgs-50e0012f9d576aed3765b0c540167513fa8c2fda.tar.bz2
nixpkgs-50e0012f9d576aed3765b0c540167513fa8c2fda.tar.lz
nixpkgs-50e0012f9d576aed3765b0c540167513fa8c2fda.tar.xz
nixpkgs-50e0012f9d576aed3765b0c540167513fa8c2fda.tar.zst
nixpkgs-50e0012f9d576aed3765b0c540167513fa8c2fda.zip
treewide: cleanup some unused bindings
Diffstat (limited to 'pkgs/applications/editors/neovim')
-rw-r--r--pkgs/applications/editors/neovim/tests/default.nix9
1 files changed, 0 insertions, 9 deletions
diff --git a/pkgs/applications/editors/neovim/tests/default.nix b/pkgs/applications/editors/neovim/tests/default.nix
index 29749c35db1..8a4e86ef655 100644
--- a/pkgs/applications/editors/neovim/tests/default.nix
+++ b/pkgs/applications/editors/neovim/tests/default.nix
@@ -9,8 +9,6 @@
 let
   inherit (neovimUtils) makeNeovimConfig;
 
-  packages.myVimPackage.start = with vimPlugins; [ vim-nix ];
-
   plugins = with vimPlugins; [
     {
       plugin = vim-obsession;
@@ -47,13 +45,6 @@ let
 
   nvimAutoDisableWrap = makeNeovimConfig { };
 
-  nvimConfDontWrap = makeNeovimConfig {
-    inherit plugins;
-    customRC = ''
-      " just a comment
-    '';
-  };
-
   wrapNeovim2 = suffix: config:
     wrapNeovimUnstable neovim-unwrapped (config // {
       extraName = suffix;