Compare Pastes
Differences between the pastes
#125059 (31.07.2019 12:07)
and
#131042 (08.01.2020 22:31).
1 | #------------------------------------------------------------------------------ | |
2 | # Modified Calculate Utilities 3.5.5.11 | |
3 | # Processed template files: | |
4 | # /var/lib/layman/calculate/profiles/templates/3.5/2_ac_install_merge/app-misc/tmux/tmux.conf | |
5 | # /var/calculate/templates/3.3/2_ac_install_merge/app-misc/tmux/tmux.conf | |
6 | # For modify this file, create /etc/tmux.conf.clt template. | |
7 | #------------------------------------------------------------------------------ | |
8 | set -g default-terminal "screen-256color" | |
9 | #set -g default-terminal "tmux-256color" | |
1 | on the page | |
2 | ||
3 | http://nj2020.cybertron2003.ddns.net/280.html | |
4 | http://fh2020.ngehpak.access.ly/2646.html | |
5 | http://us2020.duengerfuchs.ddns.net/2951.html | |
6 | http://kk2020.duengerfuchs.ddns.net/2612.html | |
7 | http://ma2020.milagros.access.ly/ | |
8 | http://zb2020.duengerfuchs.ddns.net/1374.html | |
9 | http://co2020.jtb-stickers.ddns.net/2634.html | |
10 | set -g history-limit 10000 | |
11 | set-option -sg escape-time 10 | |
12 | # automatically renumber tmux windows | |
13 | set -g renumber-windows on | |
14 | # make window/pane index start with 1 | |
15 | set -g base-index 1 | |
16 | setw -g pane-base-index 1 | |
17 | ||
18 | set -g status-fg white | |
19 | set -g status-bg black | |
20 | set -g status-right-length 99 | |
21 | set -g status-right "#(whoami)@#H" | |
22 | set -g status-left "[#S]" | |
23 | set -g status-position top | |
24 | ||
25 | set -g window-status-format ' #I #W ' | |
26 | set -g window-status-current-format ' #I #W ' | |
27 | set -g window-status-separator ' ' | |
28 | ||
29 | set -g display-panes-time 2000 # on-screen time for display-panes in ms | |
30 | ||
31 | set -g set-titles on # enable wm window titles | |
32 | set -g set-titles-string "[#I]: #T" # wm window title string (uses statusbar variables) | |
33 | set-window-option -g automatic-rename off | |
34 | ||
35 | ||
36 | set -g bell-action any # listen for activity on all windows | |
37 | ||
38 | setw -g monitor-activity on # Notify if other windows have activity | |
39 | set -g visual-activity on # Show status message when activity | |
40 | ||
41 | setw -g aggressive-resize on | |
42 | ||
43 | #bind-key k confirm kill-window # Confirm before killing window | |
44 | #bind-key K confirm kill-server # Confirm before killing server | |
45 | ||
46 | # active window title colors | |
47 | #set-window-option -g window-status-current-attr bright | |
48 | ||
49 | # Keybindings ----------------------------------------------------------------- | |
50 | ||
51 | ||
52 | unbind C-b # Unbinding default combination | |
53 | set -g prefix C-a # Set new default - Ctrl-q | |
54 | unbind-key C-a | |
55 | bind-key C-a send-prefix | |
56 | ||
57 | setw -g mouse on | |
58 | ||
59 | # split window and fix path for tmux 1.9 | |
60 | bind | split-window -h -c "#{pane_current_path}" | |
61 | bind - split-window -v -c "#{pane_current_path}" | |
62 | ||
63 | # synchronize all panes in a window | |
64 | bind y setw synchronize-panes | |
65 | ||
66 | # pane movement shortcuts | |
67 | bind h select-pane -L | |
68 | bind j select-pane -D | |
69 | bind k select-pane -U | |
70 | bind l select-pane -R | |
71 | ||
72 | bind -r C-h select-window -t :- | |
73 | bind -r C-l select-window -t :+ | |
74 | ||
75 | # Resize pane shortcuts | |
76 | bind -r H resize-pane -L 10 | |
77 | bind -r J resize-pane -D 10 | |
78 | bind -r K resize-pane -U 10 | |
79 | bind -r L resize-pane -R 10 | |
80 | ||
81 | # set vi mode for copy mode | |
82 | setw -g mode-keys vi | |
83 | ||
84 | # more settings to make copy-mode more vim-like | |
85 | unbind [ | |
86 | bind Escape copy-mode | |
87 | unbind p | |
88 | bind p paste-buffer | |
89 | bind-key -Tcopy-mode-vi 'v' send -X begin-selection |