Merge branch 'master' of ssh://git.rayelliott.dev:3222/dots/tmux
This commit is contained in:
commit
7d8f13fac8
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
if [ -e "$HOME/.tmux" ] ; then
|
||||||
|
mv "$HOME/.tmux" "$HOME/.tmux-original-$(date +%s)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -e "$HOME/.tmux.conf" ] ; then
|
||||||
|
mv "$HOME/.tmux.conf" "$HOME/.tmux.conf-original-$(date +%s)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
ln -s "$HOME/.config/tmux" "$HOME/.tmux"
|
||||||
|
ln -s "$HOME/.config/tmux/tmux.conf" "$HOME/.tmux.conf"
|
|
@ -1,8 +1,8 @@
|
||||||
set -g display-panes-active-colour colour252
|
set -g display-panes-active-colour colour252
|
||||||
set -g display-panes-colour colour242
|
set -g display-panes-colour colour242
|
||||||
|
|
||||||
set -g pane-border-style fg=colour235,bg=terminal
|
set -g pane-border-style fg=colour235
|
||||||
set -g pane-active-border-style fg=colour240,bg=terminal
|
set -g pane-active-border-style fg=colour240
|
||||||
|
|
||||||
set -g window-status-current-style fg=colour253
|
set -g window-status-current-style fg=colour253
|
||||||
set -g window-status-style fg=colour242
|
set -g window-status-style fg=colour242
|
||||||
|
|
Loading…
Reference in New Issue