parent
3d2fb260c3
commit
589ebcfca6
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "fake_home/.tmux/plugins/tpm"]
|
||||||
|
path = fake_home/.tmux/plugins/tpm
|
||||||
|
url = https://github.com/tmux-plugins/tpm.git
|
2
copy.sh
2
copy.sh
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
# Install required packages
|
# Install required packages
|
||||||
if [[ "$1" != "--install" ]]; then
|
if [[ "$1" != "--install" ]]; then
|
||||||
|
git submodule init
|
||||||
|
git submodule update
|
||||||
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||||
FAKE_HOME="$SCRIPT_DIR/fake_home"
|
FAKE_HOME="$SCRIPT_DIR/fake_home"
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,19 @@
|
||||||
# set -g default-terminal "screen-255color"
|
set -g default-terminal "xterm-256color"
|
||||||
|
set-option -ga terminal-overrides ",xterm-256color:Tc"
|
||||||
|
|
||||||
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||||
|
|
||||||
# remap prefix from 'C-b' to 'C-a'
|
# remap prefix from 'C-b' to 'C-a'
|
||||||
unbind C-b
|
unbind C-b
|
||||||
set-option -g prefix C-a
|
set-option -g prefix C-a
|
||||||
bind-key C-a send-prefix
|
bind-key C-a send-prefix
|
||||||
|
|
||||||
set -g default-shell /usr/bin/zsh
|
set -g default-shell /usr/bin/zsh
|
||||||
set-option -g default-terminal "screen-256color"
|
|
||||||
set -g status-right "# %A, %d %b %Y - %I:%M %p "
|
set -g status-right "# %A, %d %b %Y - %I:%M %p "
|
||||||
|
|
||||||
set -g status-bg blue
|
set -g status-bg black
|
||||||
set -g status-fg black
|
set -g status-fg blue
|
||||||
|
|
||||||
# Smart pane switching with awareness of Vim splits.
|
# Smart pane switching with awareness of Vim splits.
|
||||||
# See: https://github.com/christoomey/vim-tmux-navigator
|
# See: https://github.com/christoomey/vim-tmux-navigator
|
||||||
|
@ -34,3 +38,5 @@ bind-key -T copy-mode-vi 'C-\' select-pane -l
|
||||||
setw -g window-status-current-style fg=blue,bg=black
|
setw -g window-status-current-style fg=blue,bg=black
|
||||||
setw -g window-status-current-format ' #I #{s|/home/sagevaillancourt|~|:pane_current_path} #W#F '
|
setw -g window-status-current-format ' #I #{s|/home/sagevaillancourt|~|:pane_current_path} #W#F '
|
||||||
setw -g window-status-format ' #I #{s|/home/sagevaillancourt|~|:pane_current_path} #W#F '
|
setw -g window-status-format ' #I #{s|/home/sagevaillancourt|~|:pane_current_path} #W#F '
|
||||||
|
|
||||||
|
run '~/.tmux/plugins/tpm/tpm'
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 99469c4a9b1ccf77fade25842dc7bafbc8ce9946
|
Loading…
Reference in New Issue