Compare commits

..

1 Commits

Author SHA1 Message Date
727d2274d8 Add conduit file & tmux.conf config file 2017-12-06 00:21:15 +00:00

View File

@ -39,12 +39,12 @@ set -g pane-base-index 1
set-option -g mouse on
# Enable cursor shape per pane in VTE compatible terminals
if -b '[ "`uname`" != "Darwin" ]' \
"set -ga terminal-overrides ',*:Ss=\E[%p1%d q:Se=\E[2 q'"
if '[ "`uname`" != "Darwin" ]' \
'set -ga terminal-overrides \',*:Ss=\E[%p1%d q:Se=\E[2 q\''
# Set only on OS X where it's required
if -b '[ "`uname`" = "Darwin" ]' \
"set -g default-command 'reattach-to-user-namespace -l $SHELL'"
if '[ "`uname`" = "Darwin" ]' \
'set -g default-command "reattach-to-user-namespace -l $SHELL"'
# Make new splits open in current directory
bind "\"" split-window -c "#{pane_current_path}"