๐Ÿ”’ Backup for my config files
dotfiles

add stow

+86
+23
.gitconfig
··· 1 + [user] 2 + email = kacaii.privado@gmail.com 3 + name = Kacaii 4 + 5 + [core] 6 + sshCommand = ssh -i ~/.ssh/id_ed25519 -F /dev/null 7 + 8 + [ghq] 9 + root = ~/ghq 10 + 11 + [pull] 12 + rebase = true 13 + 14 + [init] 15 + defaultBranch = main 16 + 17 + [alias] 18 + lol = log --oneline --decorate 19 + graph = log --oneline --graph --decorate 20 + 21 + [merge] 22 + conflictstyle = diff3 23 +
+63
.tmux.conf
··· 1 + # Commands --------------------------------------------------------------------- 2 + unbind r 3 + bind r source-file ~/.tmux.conf 4 + 5 + # Split horizontally ๎ญ– 6 + unbind '"' 7 + bind | split-window -h -c "#{pane_current_path}" 8 + 9 + # Split vertically ๎ญ— 10 + unbind % 11 + bind - split-window -v -c "#{pkne_current_path}" 12 + 13 + # Zoom ๎ฎ 14 + bind f resize-pane -Z 15 + 16 + # Status Bar ------------------------------------------------------------------- 17 + set -g status-position 'top' 18 + set -g status-style "bg=default,fg=black,bright" 19 + 20 + set -g status-left "#[fg=green] ๎ฏˆ " 21 + set -g status-left-length 100 22 + set -g status-right "#[fg=black,bright]#S" 23 + 24 + # Window buttons --------------------------------------------------------------- 25 + set -g window-status-format " ๎ฉฑ" 26 + set -g window-status-current-format " ๎ฉฑ" 27 + 28 + set -g window-status-current-style "#{?window_zoomed_flag,fg=yellow,fg=magenta,nobold}" 29 + set -g window-status-bell-style "fg=red,nobold" 30 + 31 + # Pane Separators -------------------------------------------------------------- 32 + set -g pane-border-lines "single" 33 + set -g pane-border-style "fg=black,bright" 34 + set -g pane-active-border-style "fg=magenta" 35 + 36 + # QoL -------------------------------------------------------------------------- 37 + set -g renumber-windows on 38 + set -g mouse on 39 + set -g repeat-time 1000 40 + set -g base-index 1 41 + 42 + # Messages 43 + set -g message-style "fg=black,bg=blue" 44 + 45 + # ------------------------------------------------------------------------------ 46 + set -g set-clipboard on # Use system clipboard ๏ฟ 47 + set -g default-terminal "${TERM}" 48 + 49 + set -gq allow-passthrough all 50 + set -ga update-environment TERM 51 + 52 + # Color Corrections ๎ญœ 53 + set -g default-terminal "tmux-256color" 54 + set -g terminal-overrides ",*:RGB" 55 + 56 + # List of plugins ๏‰ 57 + set -g @plugin "christoomey/vim-tmux-navigator" 58 + set -g @plugin "sainnhe/tmux-fzf" 59 + set -g @plugin "tmux-plugins/tpm" 60 + set -g @plugin "tmux-plugins/tmux-sensible" 61 + 62 + # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) 63 + run "~/.tmux/plugins/tpm/tpm"