aboutsummaryrefslogtreecommitdiff
path: root/mac
diff options
context:
space:
mode:
authorjakob.stendahl <jakob.stendahl@infomedia.dk>2024-05-02 01:22:42 +0200
committerjakob.stendahl <jakob.stendahl@infomedia.dk>2024-05-02 01:22:42 +0200
commit03c510ab2fa66c7783e5df6d61ff6f9d40b1b2d8 (patch)
treeedb8d221ec13e57a2cad50cccdd381e8dd1cd57e /mac
parentbc3730648f94148fbd6fedd4e447e0885ce31c89 (diff)
downloaddotfiles-03c510ab2fa66c7783e5df6d61ff6f9d40b1b2d8.tar.gz
dotfiles-03c510ab2fa66c7783e5df6d61ff6f9d40b1b2d8.zip
Remove unused
Diffstat (limited to 'mac')
-rw-r--r--mac/tmux.conf70
1 files changed, 0 insertions, 70 deletions
diff --git a/mac/tmux.conf b/mac/tmux.conf
deleted file mode 100644
index b12f599..0000000
--- a/mac/tmux.conf
+++ /dev/null
@@ -1,70 +0,0 @@
-# -- general -------------------------------------------------------------------
-#set -g default-terminal "xterm-256color"
-set -g default-terminal "screen-256color"
-set -as terminal-overrides ",*:U8=0"
-set -s escape-time 10 # faster command sequences
-set -s focus-events on
-
-run-shell "powerline-daemon -q"
-source "/usr/local/lib/python3.7/site-packages/powerline/bindings/tmux/powerline.conf"
-
-# -- display -------------------------------------------------------------------
-set -g base-index 1
-setw -g pane-base-index 1
-setw -g automatic-rename on # rename window to reflect current program
-set -g renumber-windows on # renumber windows when a window is closed
-
-set -g display-panes-time 800 # slightly longer pane indicators display time
-set -g display-time 1000 # slightly longer status messages display time
-
-set -g status-interval 10 # redraw status line every 10 seconds
-
-set-option -g default-shell /usr/local/bin/zsh
-
-set-option -g display-panes-active-colour colour33
-set-option -g display-panes-colour colour166
-
-# activity
-set -g monitor-activity on
-set -g visual-activity off
-
-# -- navigation ----------------------------------------------------------------
-
-# Set window notification
-setw -g monitor-activity on
-set -g visual-activity on
-
-unbind C-b
-set -g prefix C-a
-
-bind -n M-Left select-pane -L
-bind -n M-Right select-pane -R
-bind -n M-Up select-pane -U
-bind -n M-Down select-pane -D
-
-# Set copying settings
-setw -g mode-keys vi
-set-option -s set-clipboard off
-bind P paste-buffer
-bind-key -T copy-mode-vi 'v' send -X begin-selection
-bind-key -T copy-mode-vi 'r' send -X rectangle-toggle
-bind-key -T copy-mode-vi 'y' send -X copy-pipe-and-cancel 'xclip -sel clip -i'`
-unbind -T copy-mode-vi Enter
-bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel 'xclip -se c -i'
-#bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel 'xclip -se c -ind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel 'xclip -se c -i'
-#bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel 'xclip -se c -i''
-
-bind-key S-Left swap-window -t -1
-bind-key S-Right swap-window -t +1
-
-# Bells
-set -g visual-bell on
-set -g bell-action any
-
-# Scroll in shell
-set -g terminal-overrides 'xterm*:smcup@:rmcup@'
-#set -wg xterm-keys 1
-set -g mouse on
-
-
-