Bohdan's terminal configuration
0
fork

Configure Feed

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

added tmux conf

bpavuk 9f5be6c9 8b7088f2

+45
+45
tmux/.tmux.conf
··· 1 + # custom options 2 + ## prefix 3 + unbind C-b 4 + set -g prefix C-Space 5 + 6 + ## splitting 7 + unbind % 8 + unbind '"' 9 + 10 + bind v split-window -h -c "#{pane_current_path}" 11 + bind h split-window -h -c "#{pane_current_path}" 12 + 13 + ## reloading 14 + unbind r 15 + bind r source-file ~/.tmux.conf \; display "Reloaded ~/.tmux.conf" 16 + 17 + # zsh 18 + set-option -g default-shell /usr/bin/zsh 19 + 20 + # window enumeration 21 + set -g base-index 1 22 + setw -g pane-base-index 1 23 + 24 + # plugins 25 + set -g @plugin 'tmux-plugins/tpm' 26 + set -g @plugin 'aserowy/tmux.nvim' 27 + 28 + # navigation 29 + set -g @tmux-nvim-navigation true 30 + set -g @tmux-nvim-navigation-cycle true 31 + set -g @tmux-nvim-navigation-keybinding-left 'C-h' 32 + set -g @tmux-nvim-navigation-keybinding-down 'C-j' 33 + set -g @tmux-nvim-navigation-keybinding-up 'C-k' 34 + set -g @tmux-nvim-navigation-keybinding-right 'C-l' 35 + 36 + # resize 37 + set -g @tmux-nvim-resize true 38 + set -g @tmux-nvim-resize-step-x 1 39 + set -g @tmux-nvim-resize-step-y 1 40 + set -g @tmux-nvim-resize-keybinding-left 'M-h' 41 + set -g @tmux-nvim-resize-keybinding-down 'M-j' 42 + set -g @tmux-nvim-resize-keybinding-up 'M-k' 43 + set -g @tmux-nvim-resize-keybinding-right 'M-l' 44 + 45 + run '~/.tmux/plugins/tpm/tpm'