Bohdan's terminal configuration
0
fork

Configure Feed

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

made a beautiful top bar

bpavuk f935634d 9f5be6c9

+26 -2
+26 -2
tmux/.tmux.conf
··· 1 1 # custom options 2 + set -g default-terminal "tmux-256color" 3 + 2 4 ## prefix 3 5 unbind C-b 4 6 set -g prefix C-Space ··· 14 16 unbind r 15 17 bind r source-file ~/.tmux.conf \; display "Reloaded ~/.tmux.conf" 16 18 19 + ## status bar options 20 + set-option -g status-position top 21 + 22 + set -g @catppuccin_window_status_style "rounded" 23 + 24 + set -g status-right-length 100 25 + set -g status-left-length 100 26 + set -g status-left "" 27 + set -g status-right "#{E:@catppuccin_status_application}" 28 + set -agF status-right "#{E:@catppuccin_status_cpu}" 29 + set -ag status-right "#{E:@catppuccin_status_session}" 30 + set -ag status-right "#{E:@catppuccin_status_uptime}" 31 + 17 32 # zsh 18 33 set-option -g default-shell /usr/bin/zsh 19 34 ··· 23 38 24 39 # plugins 25 40 set -g @plugin 'tmux-plugins/tpm' 41 + 42 + ## catppuccin status bar 43 + set -g @plugin 'catppuccin/tmux' 44 + 45 + ### some additions to the status bar 46 + set -g @plugin 'tmux-plugins/tmux-cpu' 47 + 48 + ## nvim 26 49 set -g @plugin 'aserowy/tmux.nvim' 27 50 28 - # navigation 51 + ### navigation 29 52 set -g @tmux-nvim-navigation true 30 53 set -g @tmux-nvim-navigation-cycle true 31 54 set -g @tmux-nvim-navigation-keybinding-left 'C-h' ··· 33 56 set -g @tmux-nvim-navigation-keybinding-up 'C-k' 34 57 set -g @tmux-nvim-navigation-keybinding-right 'C-l' 35 58 36 - # resize 59 + ### resize 37 60 set -g @tmux-nvim-resize true 38 61 set -g @tmux-nvim-resize-step-x 1 39 62 set -g @tmux-nvim-resize-step-y 1 ··· 41 64 set -g @tmux-nvim-resize-keybinding-down 'M-j' 42 65 set -g @tmux-nvim-resize-keybinding-up 'M-k' 43 66 set -g @tmux-nvim-resize-keybinding-right 'M-l' 67 + 44 68 45 69 run '~/.tmux/plugins/tpm/tpm'