File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -65,10 +65,12 @@ set -g status-left-length 20
6565set -g status-right 20
6666set -g display-panes-colour colour233
6767set -g display-panes-active-colour colour245
68- set -g pane-active-border-style " bg=default fg=magenta"
6968set -g clock-mode-colour colour39
7069set -g clock-mode-style 24
7170
71+ set -g pane-border-style " bg=default fg=colour235" # Inactive: slightly lighter than bg
72+ set -g pane-active-border-style " bg=default fg=colour245" # Active: much brighter gray
73+
7274# List of plugins
7375set -g @plugin ' tmux-plugins/tpm'
7476set -g @plugin ' tmux-plugins/tmux-sensible'
Original file line number Diff line number Diff line change @@ -618,6 +618,11 @@ randomize() {
618618 done
619619}
620620
621+ # pastes when used as a source, copies when used as a destination, like `clip | jq | clip`
622+ clip () {
623+ [ -t 0 ] && pbpaste || pbcopy
624+ }
625+
621626quote-clipboard () {
622627 local content=$( pbpaste)
623628
You can’t perform that action at this time.
0 commit comments