laptop changes

This commit is contained in:
2024-06-30 19:24:05 +02:00
parent 455e7f84c0
commit d34a72b1ec
24 changed files with 1662 additions and 243 deletions

View File

@ -0,0 +1,36 @@
set -g history-limit 50000
set -g default-terminal "screen-256color"
set -g mouse on
set -sg escape-time 50
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
bind h split-window -h
bind v split-window -v
unbind '"'
unbind %
bind r source-file ~/.tmate.conf
bind -n M-Left select-window -p
bind -n M-Right select-window -n
set-option -g allow-rename off
bind -n C-t new-window
bind -n M-0 select-window -T -t 0
bind -n M-1 select-window -T -t 1
bind -n M-2 select-window -T -t 2
bind -n M-3 select-window -T -t 3
bind -n M-4 select-window -T -t 4
bind -n M-5 select-window -T -t 5
bind -n M-6 select-window -T -t 6
bind -n M-7 select-window -T -t 7
bind -n M-8 select-window -T -t 8
bind -n M-9 select-window -T -t 9
set -g status-style bg='#44475a',fg='#bd93f9'
set -g status-interval 1
set -g message-style bg='#44475a',fg='#8be9fd'
set-window-option -g window-status-style fg='#bd93f9',bg=default
set-window-option -g window-status-current-style fg='#ff79c6',bg='#282a36'
set -g window-status-current-format "#[fg=#44475a]#[bg=#bd93f9]#[fg=#f8f8f2]#[bg=#bd93f9] #I #W #[fg=#bd93f9]#[bg=#44475a]"
set -g window-status-format "#[fg=#f8f8f2]#[bg=#44475a]#I #W #[fg=#44475a]"

View File

@ -0,0 +1,12 @@
{pkgs, ...}: {
programs.tmate = {
enable = true;
host = "tmate.hetzner.company";
port = 10022;
# dsaFingerprint = "SHA256:YspEXM7hBFT+zEcbq9St+V9sj2TCE6lMczdIn+jeZUU";
# rsaFingerprint = "SHA256:pCOEObNY3ihLZn2k6iIgOUDXS8PX10qz1JPBidrEfgA";
rsaFingerprint = "SHA256:qILAxjmkvwkqPolJ99qFcnzLg/V5UlfB3q/Z1CDvuWY";
dsaFingerprint = "SHA256:zGqypd4klAGEGFYPeGlVMy9KJdycFA14rNpk3eD2VZo";
extraConfig = builtins.readFile ./.tmate.conf;
};
}