summaryrefslogtreecommitdiffstats
path: root/.tmux.conf
diff options
context:
space:
mode:
authorYigit Sever2019-03-30 19:53:52 +0300
committerYigit Sever2019-03-30 19:54:31 +0300
commitcfd96387edf69b2e05b54b1c57d9a8903a0b80bd (patch)
treef32102440b008ae13028210034ca228e39d81a5b /.tmux.conf
parente9120444fbd265f319619c036c1da19bb57cd5e5 (diff)
downloaddotfiles-cfd96387edf69b2e05b54b1c57d9a8903a0b80bd.tar.gz
dotfiles-cfd96387edf69b2e05b54b1c57d9a8903a0b80bd.tar.bz2
dotfiles-cfd96387edf69b2e05b54b1c57d9a8903a0b80bd.zip
Migrate from gruvbox to nord
diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf14
1 files changed, 11 insertions, 3 deletions
diff --git a/.tmux.conf b/.tmux.conf
index a798aa3..df2b81d 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -32,7 +32,7 @@ setw -g window-status-bg black
32setw -g window-status-attr dim 32setw -g window-status-attr dim
33setw -g window-status-format ' #I#[fg=cyan]:#[fg=white]#W#[fg=white]#F ' 33setw -g window-status-format ' #I#[fg=cyan]:#[fg=white]#W#[fg=white]#F '
34 34
35# Don't prompt to kill panes/windows. TODO you will fuck this up 35# Don't prompt to kill panes/windows.
36bind-key x kill-pane 36bind-key x kill-pane
37bind-key & kill-window 37bind-key & kill-window
38 38
@@ -50,8 +50,6 @@ bind-key z resize-pane -Z
50# Use vim keybindings in copy mode 50# Use vim keybindings in copy mode
51setw -g mode-keys vi 51setw -g mode-keys vi
52 52
53set -g default-terminal "tmux-256color"
54set -g default-command "${SHELL}"
55set -g set-titles on 53set -g set-titles on
56set -g mouse on 54set -g mouse on
57 55
@@ -82,3 +80,13 @@ set -g visual-activity on
82 80
83# Example of using a shell command in the status line 81# Example of using a shell command in the status line
84#set -g status-right "#[fg=yellow]#(uptime | cut -d ',' -f 2-)" 82#set -g status-right "#[fg=yellow]#(uptime | cut -d ',' -f 2-)"
83
84set -g default-terminal "xterm-256color"
85set-option -ga terminal-overrides ",xterm-256color:Tc"
86
87# List of plugins
88set -g @plugin 'tmux-plugins/tpm'
89set -g @plugin 'tmux-plugins/tmux-sensible'
90
91# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
92run -b '~/.tmux/plugins/tpm/tpm'