this repo has no description
0
fork

Configure Feed

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

misc cleanup

+5 -63
+3 -3
misc/tmux.conf
··· 2 2 unbind C-b 3 3 set-option -g prefix C-a 4 4 5 - set -g default-terminal "alacritty" 6 - set -ga terminal-overrides ",alacritty:RGB" 5 + set -g default-terminal "screen-256color" 6 + set -as terminal-overrides ",xterm-256color:Tc" 7 7 8 8 set -g base-index 1 9 9 setw -g pane-base-index 1 ··· 74 74 bind-key -T copy-mode-vi 'y' send -X copy-pipe "pbcopy" 75 75 bind-key -T copy-mode-vi 'r' send -X rectangle-toggle 76 76 77 - run '~/.tmux/plugins/tpm/tpm' 77 + run '~/.tmux/plugins/tpm/tpm'
-46
scripts/sys-theme.sh
··· 1 - #!/usr/bin/env bash 2 - 3 - function sync_theme() { 4 - local tmux='/opt/homebrew/bin/tmux' 5 - 6 - local alacritty_config_file=$HOME/.config/alacritty/alacritty.toml 7 - local alacritty_themes_folder=$HOME/.config/alacritty/themes/themes/ 8 - local alacritty_theme_file=$HOME/.config/alacritty/theme.toml 9 - 10 - # check if $HOME/.theme exists, if not, create it 11 - if [[ ! -f $HOME/.theme ]]; then 12 - touch $HOME/.theme 13 - fi 14 - 15 - local prev=$(cat $HOME/.theme) 16 - 17 - if [[ $(defaults read -g AppleInterfaceStyle 2> /dev/null) == "Dark" ]]; then 18 - if [[ $prev != "dark" ]]; then 19 - echo -e "dark" > $HOME/.theme 20 - 21 - rm $alacritty_theme_file && \ 22 - ln -s $alacritty_themes_folder/everforest_dark.toml $alacritty_theme_file 23 - touch $alacritty_config_file 24 - 25 - $tmux source $HOME/.tmux.conf 26 - fi 27 - else 28 - if [[ $prev != "light" ]]; then 29 - echo -e "light" > $HOME/.theme 30 - 31 - touch $alacritty_theme_file 32 - rm $alacritty_theme_file && \ 33 - ln -s $alacritty_themes_folder/everforest_light.toml $alacritty_theme_file 34 - 35 - touch $alacritty_config_file 36 - 37 - $tmux source $HOME/.tmux.conf 38 - fi 39 - fi 40 - } 41 - 42 - sync_theme 43 - for i in {1..19}; do 44 - sync_theme 45 - sleep 3 46 - done
+2 -14
zsh/zshrc
··· 5 5 export GPG_TTY=$(tty) 6 6 7 7 #oh-my-zsh 8 - plugins=(git vi-mode fzf direnv) 8 + plugins=(git vi-mode fzf direnv asdf) 9 9 ZSH_THEME="robbyrussell" 10 - source $HOME/.oh-my-zsh/oh-my-zsh.sh 11 - 12 - eval "$(rbenv init - zsh)" 13 - eval "$(pyenv init -)" 14 - . $(brew --prefix asdf)/libexec/asdf.sh 15 - 16 - # pnpm 17 - export PNPM_HOME="/Users/sethetter/Library/pnpm" 18 - case ":$PATH:" in 19 - *":$PNPM_HOME:"*) ;; 20 - *) export PATH="$PNPM_HOME:$PATH" ;; 21 - esac 22 - # pnpm end 10 + source $HOME/.oh-my-zsh/oh-my-zsh.sh