tmux.conf hinzugefügt
This commit is contained in:
parent
23168be20a
commit
e12199ae0c
|
@ -0,0 +1,55 @@
|
|||
unbind r
|
||||
bind r source-file ~/.tmux.conf
|
||||
|
||||
# Ctrl + S für Befehle
|
||||
set -g prefix C-s
|
||||
set-option -g status-position top
|
||||
|
||||
set -g mouse on
|
||||
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
|
||||
|
||||
|
||||
#List of plugins
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
set -g @plugin 'catppuccin/tmux'
|
||||
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||||
set -g @plugin 'tmux-plugins/tmux-continuum'
|
||||
|
||||
set -g @continuum-restore 'on'
|
||||
|
||||
set -g @catppuccin_window_status_style "slanted"
|
||||
set -g @catppuccin_window_number_position "right"
|
||||
|
||||
set -g @catppuccin_window_default_fill "number"
|
||||
|
||||
set -g @catppuccin_window_current_fill "number"
|
||||
set -g @catppuccin_window_current_text "#{pane_current_path} "
|
||||
|
||||
set -g @catppuccin_status_left_separator ""
|
||||
set -g @catppuccin_status_right_separator " "
|
||||
set -g @catppuccin_status_fill "all"
|
||||
set -g @catppuccin_status_connect_separator "yes"
|
||||
|
||||
# Run catppuccin plugin manually or through tpm
|
||||
# ...
|
||||
|
||||
set -g status-left ""
|
||||
set -gF status-right "#{E:@catppuccin_status_application}#{E:@catppuccin_status_session}#{E:@catppuccin_status_date_time}"
|
||||
|
||||
# Run catppuccin plugin manually or through tpm
|
||||
# ...
|
||||
|
||||
set -g status-left ""
|
||||
set -gF status-right "#{E:@catppuccin_status_application}#{E:@catppuccin_status_session}#{E:@catppuccin_status_date_time}"
|
||||
|
||||
# Other examples:
|
||||
# set -g @plugin 'github_username/plugin_name'
|
||||
# set -g @plugin 'github_username/plugin_name#branch'
|
||||
# set -g @plugin 'git@github.com:user/plugin'
|
||||
# set -g @plugin 'git@bitbucket.com:user/plugin'
|
||||
|
||||
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
|
@ -47,6 +47,7 @@ log "📥 Lade Daten"
|
|||
run git clone https://git.boergmann.it/klaas/shellskripte
|
||||
cd shellskripte || exit 1
|
||||
run cp ./configs/zshrc ~/.zshrc
|
||||
run cp .config/tmux.conf ~/.tmux.conf
|
||||
mkdir -p ~/.ssh
|
||||
run cp ./ssh/authorized_keys ~/.ssh/authorized_keys
|
||||
run sudo sh ./ssh/ssh_password -n
|
||||
|
|
Loading…
Reference in New Issue