i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Set TERM correctly (I think) and open new panes in same directory

+7 -1
+7 -1
tmux/.tmux.conf
··· 2 2 set -g default-command "${SHELL}" 3 3 4 4 # color support 5 - set -g default-terminal 'xterm-256color' 5 + set -g default-terminal 'tmux-256color' 6 + set -ga terminal-overrides ',xterm-256color:RGB' 6 7 set -ga terminal-overrides ',xterm-256color:Tc' 7 8 8 9 # get rid of esc delay ··· 39 40 bind -T copy-mode-vi i send-keys -X cancel 40 41 bind -T copy-mode-vi Escape send-keys -X cancel 41 42 43 + # open new panes in the same directory as the current pane 44 + # (braces to appease the tmux tree-sitter parser) 45 + bind % { split-window -h -c "#{pane_current_path}" } 46 + bind '"' { split-window -v -c "#{pane_current_path}" } 47 + # bind c { new-window -c "#{pane_current_path}" } 42 48 43 49 # plugins 44 50