From 0aa797ef4bcf222369859f5010ee60484a445ecd Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Tue, 9 Jun 2020 13:02:14 -0600 Subject: [PATCH] tmux: fix plugins --- profiles/develop/tmux/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/develop/tmux/default.nix b/profiles/develop/tmux/default.nix index b929acf9..1007a25c 100644 --- a/profiles/develop/tmux/default.nix +++ b/profiles/develop/tmux/default.nix @@ -6,7 +6,7 @@ let pluginConf = plugins: concatStringsSep "\n\n" (map (plugin: - let name = removePrefix "tmuxplugin-" plugin.name; + let name = removePrefix "tmuxplugin-" plugin.pname; in "run-shell ${plugin}/share/tmux-plugins/${name}/${name}.tmux") plugins);