diff options
author | EuAndreh <eu@euandre.org> | 2019-05-30 21:19:23 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-05-30 21:19:23 -0300 |
commit | 28bdfef01b1fde7eb421d830e93df2bbaab5edca (patch) | |
tree | c058fcf249733c1c72b7b33032ef41608a70d24a /tmux | |
parent | Simple USAGE text change on burn-nixos.sh (diff) | |
download | dotfiles-28bdfef01b1fde7eb421d830e93df2bbaab5edca.tar.gz dotfiles-28bdfef01b1fde7eb421d830e93df2bbaab5edca.tar.xz |
Remove empty string from tmux.conf
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux/tmux.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 3ae1b39..3cf53cb 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -12,7 +12,7 @@ bind-key r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded" # Holy answer that properly implements copying from tmux! # https://unix.stackexchange.com/a/349020/276661 -if-shell "uname | grep -q Darwin" "source-file ~/.tmux-macos.conf" " source-file ~/.tmux-gnu-linux.conf" +if-shell "uname | grep -q Darwin" "source-file ~/.tmux-macos.conf" "source-file ~/.tmux-gnu-linux.conf" # Moving around panes bind-key h select-pane -L |