From 51810b5c07e20982ebdf66f0bfb384c4bf55ad7d Mon Sep 17 00:00:00 2001 From: Akshay Date: Wed, 22 Jul 2020 08:04:08 +0530 Subject: squash again --- tmux/.tmux.conf | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 tmux/.tmux.conf (limited to 'tmux/.tmux.conf') diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf new file mode 100644 index 0000000..9b6d18e --- /dev/null +++ b/tmux/.tmux.conf @@ -0,0 +1,62 @@ +set -g prefix C-a +unbind-key C-b +bind-key C-a send-prefix + +bind r source-file ~/.tmux.conf + +set-option -g default-terminal xterm-256color-italic +set escape-time 20 + +set -g mouse on + +set -g base-index 1 +setw -g pane-base-index 1 + +# pane binds +bind -n M-j select-pane -D +bind -n M-k select-pane -U +bind-key v split-window -h -c "#{pane_current_path}" +bind-key h split-window -v -c "#{pane_current_path}" +bind-key '"' split-window -v -c "#{pane_current_path}" + +# window binds +bind -n M-h previous-window +bind -n M-l next-window +bind-key s choose-session +bind-key c new-window -c "#{pane_current_path}" +bind-key ) swap-window -t +1 +bind-key ( swap-window -t -1 +bind-key [ copy-mode + +bind-key u capture-pane \; save-buffer /tmp/tmux-buffer \; new-window -n "urlview" '$SHELL -c "urlview < /tmp/tmux-buffer"' + +# statusline hide / unhide +bind -n M-down set -q status off +bind -n M-up set -q status on + +bind-key -T copy-mode-vi v send-keys -X begin-selection +bind-key -T copy-mode-vi y send-keys -X copy-pipe "xclip -i -sel p -f | xclip -i -sel c " +bind-key -T copy-mode-vi r send-keys -X rectangle-toggle +bind P paste-buffer + +bind E command-prompt -p "Command:" \ + "run \"tmux list-panes -a -F '##{session_name}:##{window_index}.##{pane_index}' \ + | xargs -I PANE tmux send-keys -t PANE '%1' Enter\"" + +set-window-option -g allow-rename off + +set -g pane-border-style fg=colour11 +set -g pane-active-border-style fg=colour8 + +set -g status-justify right +set -g status-right "" +set -g status-style "bg=colour0" +set -ag status-style "fg=colour7" + +set -g window-status-current-format "#[fg=colour15] #W" +set -g window-status-format "#[fg=colour8] #W" + +set -g status-left-length 100 +set -g status-left "#[fg=colour15]#(date +"%H%M") #[fg=colour8]hrs " +set -ag status-left "#[fg=colour15]#(date +"%d/%m")#[fg=colour8] #(date +"%Y") " +set -ag status-left "#[fg=colour7]#(~/scripts/bat -q)#[fg=colour12]" -- cgit v1.2.3