Skip to content

Commit 13e6031

Browse files
committed
Tmux plugins!!!
1 parent 5ad84a5 commit 13e6031

8 files changed

+41
-2
lines changed

.gitmodules

+15
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,18 @@
2222
[submodule "vim/bundle/fzf.vim"]
2323
path = vim/bundle/fzf.vim
2424
url = https://github.com/junegunn/fzf.vim.git
25+
[submodule "tmux/plugins/tpm"]
26+
path = tmux/plugins/tpm
27+
url = https://github.com/tmux-plugins/tpm
28+
[submodule "tmux/plugins/tmux-sensible"]
29+
path = tmux/plugins/tmux-sensible
30+
url = https://github.com/tmux-plugins/tmux-sensible.git
31+
[submodule "tmux/plugins/tmux-continuum"]
32+
path = tmux/plugins/tmux-continuum
33+
url = https://github.com/tmux-plugins/tmux-continuum.git
34+
[submodule "tmux/plugins/tmux-resurrect"]
35+
path = tmux/plugins/tmux-resurrect
36+
url = https://github.com/tmux-plugins/tmux-resurrect.git
37+
[submodule "tmux/plugins/tmux-prefix-highlight"]
38+
path = tmux/plugins/tmux-prefix-highlight
39+
url = https://github.com/tmux-plugins/tmux-prefix-highlight.git

install.conf.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
- link:
88
~/.tmux.conf: tmux.conf
9+
~/.tmux: tmux
910
~/.vim: vim
1011
~/.vimrc: vimrc
1112
~/.gitconfig: gitconfig

tmux.conf

+20-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
set -g default-terminal "screen-256color"
22
set -g default-shell "/usr/local/bin/bash"
3-
4-
set-option -g history-limit 5000
53
set -g mouse off
64

75
# splits and new windows open in current directory.
@@ -19,3 +17,23 @@ set-window-option -g mode-keys vi
1917

2018
# dont auto rename windows
2119
set-option -g allow-rename off
20+
21+
22+
# List of plugins
23+
set -g @plugin 'tmux-plugins/tpm'
24+
set -g @plugin 'tmux-plugins/tmux-sensible'
25+
set -g @plugin 'tmux-plugins/tmux-resurrect'
26+
set -g @plugin 'tmux-plugins/tmux-continuum'
27+
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
28+
29+
# plugin settings
30+
31+
# tmux-plugins/tmux-prefix-highlight enable...
32+
set -g status-right '#{prefix_highlight} | %a %Y-%m-%d %H:%M'
33+
34+
# tmux-plugins/tmux-continuum enable restore...
35+
set -g @continuum-restore 'on'
36+
37+
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
38+
run '~/.tmux/plugins/tpm/tpm'
39+

tmux/plugins/tmux-continuum

Submodule tmux-continuum added at 113826b

tmux/plugins/tmux-prefix-highlight

Submodule tmux-prefix-highlight added at 12c4818

tmux/plugins/tmux-resurrect

Submodule tmux-resurrect added at e482505

tmux/plugins/tmux-sensible

Submodule tmux-sensible added at e91b178

tmux/plugins/tpm

Submodule tpm added at 60a36d6

0 commit comments

Comments
 (0)