๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

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

ensure path

Kacaii a433bf7b 107a674b

+16 -14
+1 -14
config.fish
··· 1 1 if status is-interactive 2 2 source $__fish_config_dir/abbr.fish 3 + source $__fish_config_dir/ensure_path.fish 3 4 4 5 set -g fish_greeting "" 5 6 set fish_color_valid_path ··· 25 26 26 27 fzf --fish | source 27 28 zoxide init fish | source 28 - 29 - set -l ensure_fish_add_path \ 30 - $HOME/.bun/bin \ 31 - $HOME/.cargo/bin \ 32 - $HOME/.local/bin \ 33 - $HOME/custom_scripts \ 34 - $HOME/go/bin \ 35 - /home/linuxbrew/.linuxbrew/bin \ 36 - /home/linuxbrew/.linuxbrew/sbin \ 37 - /snap/bin 38 - 39 - for required_path in $ensure_fish_add_path 40 - fish_add_path $required_path 41 - end 42 29 43 30 end
+13
fish/ensure_path.fish
··· 1 + set -l ensure_fish_add_path \ 2 + $HOME/.bun/bin \ 3 + $HOME/.cargo/bin \ 4 + $HOME/.local/bin \ 5 + $HOME/custom_scripts \ 6 + $HOME/go/bin \ 7 + /home/linuxbrew/.linuxbrew/bin \ 8 + /home/linuxbrew/.linuxbrew/sbin \ 9 + /snap/bin 10 + 11 + for required_path in $ensure_fish_add_path 12 + fish_add_path $required_path 13 + end
+1
fish/functions/sync_backup_dotfiles.fish
··· 9 9 10 10 cp -r $__fish_config_dir/config.fish $ghq_dotfiles_root 11 11 cp -r $__fish_config_dir/abbr.fish $ghq_dotfiles_root/fish 12 + cp -r $__fish_config_dir/ensure_path.fish $ghq_dotfiles_root/fish 12 13 13 14 cp -r $jj_config_file $ghq_dotfiles_root/jj 14 15 cp -r $tmux_config_file $ghq_dotfiles_root
+1
fish/functions/sync_current_dotfiles.fish
··· 9 9 10 10 cp -r $ghq_dotfiles_root/fish/config.fish $__fish_config_dir 11 11 cp -r $ghq_dotfiles_root/fish/abbr.fish $__fish_config_dir 12 + cp -r $ghq_dotfiles_root/fish/ensure_path.fish $__fish_config_dir 12 13 13 14 cp -r $ghq_dotfiles_root/.gitconfig $HOME 14 15 cp -r $ghq_dotfiles_root/bat $XDG_CONFIG_HOME/