summary refs log tree commit diff
path: root/pkgs/applications/editors/kakoune
diff options
context:
space:
mode:
authorbuffet <niclas@countingsort.com>2020-11-15 21:42:11 +0000
committerbuffet <niclas@countingsort.com>2020-11-15 21:42:11 +0000
commit0916fa453ef95bae87054db2e68c1de078c63c3b (patch)
tree509a0e72b5c9e99c4ded760cc6f242f402565194 /pkgs/applications/editors/kakoune
parentfcbef5bac5f2769e58951f4749f6370ecec117af (diff)
downloadnixpkgs-0916fa453ef95bae87054db2e68c1de078c63c3b.tar
nixpkgs-0916fa453ef95bae87054db2e68c1de078c63c3b.tar.gz
nixpkgs-0916fa453ef95bae87054db2e68c1de078c63c3b.tar.bz2
nixpkgs-0916fa453ef95bae87054db2e68c1de078c63c3b.tar.lz
nixpkgs-0916fa453ef95bae87054db2e68c1de078c63c3b.tar.xz
nixpkgs-0916fa453ef95bae87054db2e68c1de078c63c3b.tar.zst
nixpkgs-0916fa453ef95bae87054db2e68c1de078c63c3b.zip
kak-prelude: Fix installation path
Diffstat (limited to 'pkgs/applications/editors/kakoune')
-rw-r--r--pkgs/applications/editors/kakoune/plugins/kak-prelude.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/kakoune/plugins/kak-prelude.nix b/pkgs/applications/editors/kakoune/plugins/kak-prelude.nix
index ee9c125827c..8fd5fba7d7e 100644
--- a/pkgs/applications/editors/kakoune/plugins/kak-prelude.nix
+++ b/pkgs/applications/editors/kakoune/plugins/kak-prelude.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
 
   installPhase = ''
     mkdir -p $out/share/kak/autoload/plugins
-    cp -r rc $out/share/kak/autoload/plugins/auto-pairs
+    cp -r rc $out/share/kak/autoload/plugins/prelude
   '';
 
   meta = with stdenv.lib;