update
This commit is contained in:
parent
4d862429c5
commit
986de94ed7
4 changed files with 16 additions and 12 deletions
|
@ -1,2 +0,0 @@
|
|||
# dotfiles
|
||||
My dot files managed by ChezMoi (https://github.com/twpayne/chezmoi)
|
|
@ -13,6 +13,7 @@
|
|||
cm = checkout master
|
||||
co = checkout
|
||||
cp = cherry-pick
|
||||
f = fetch
|
||||
fo = fetch origin
|
||||
m = merge
|
||||
nb = checkout -b
|
||||
|
|
|
@ -143,14 +143,11 @@ bind r source-file ~/.tmux.conf \; display-message "config reloaded!"
|
|||
# Plugins
|
||||
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||||
set -g @plugin 'laktak/extrakto'
|
||||
|
||||
# Resurrect plugin configuration
|
||||
|
||||
set -g @resurrect-capture-pane-contents 'off'
|
||||
set -g @resurrect-processes 'ssh'
|
||||
set -g @resurrect-never-overwrite 'off'
|
||||
# tmux color scheme
|
||||
set -g @plugin 'seebi/tmux-colors-solarized'
|
||||
set -g @colors-solarized '256'
|
||||
|
||||
# run tpm
|
||||
run -b '~/.tmux/plugins/tpm/tpm'
|
||||
|
|
|
@ -2,10 +2,18 @@
|
|||
add_newline = false
|
||||
|
||||
[git_status]
|
||||
ahead = "⇡${count}"
|
||||
diverged = "⇕⇡${ahead_count}⇣${behind_count}"
|
||||
behind = "⇣${count}"
|
||||
staged = '[+${count}](green)'
|
||||
conflicted = "⚔️ "
|
||||
ahead = "🏎️ 💨 ×${count}"
|
||||
behind = "🐢 ×${count}"
|
||||
diverged = "🔱 🏎️ 💨 ×${ahead_count} 🐢 ×${behind_count}"
|
||||
untracked = "🛤️ ×${count}"
|
||||
stashed = "📦 "
|
||||
modified = "📝 ×${count}"
|
||||
staged = "🗃️ ×${count}"
|
||||
renamed = "📛 ×${count}"
|
||||
deleted = "🗑️ ×${count}"
|
||||
style = "bright-white"
|
||||
format = "$all_status$ahead_behind"
|
||||
|
||||
[directory]
|
||||
truncation_length = 5
|
||||
|
|
Loading…
Add table
Reference in a new issue