Add fzf url plugin for tmux

Allows to open urls from current tmux pane.
Default shortcut prefix+u.
This commit is contained in:
Daniel Siepmann 2023-03-04 19:39:38 +01:00
parent b929c17ace
commit 113367d77a
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -21,5 +21,14 @@
sensibleOnTop = false;
plugins = with pkgs.tmuxPlugins; [
{
plugin = fzf-tmux-url;
extraConfig = ''
set -g @fzf-url-fzf-options '-p -y 1 -w 95% -h 75%'
'';
}
];
extraConfig = builtins.readFile ../files/tmux;
}