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

Configure Feed

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

add file to set variables

Kacaii 04ef4000 b33ca2cd

+21 -21
+3 -21
.config/fish/config.fish
··· 1 1 if status is-interactive 2 2 3 - source $__fish_config_dir/abbr.fish 4 - source $__fish_config_dir/ensure_path.fish 5 - 6 3 set -g fish_greeting "" 7 4 set fish_color_valid_path 8 5 9 - set -gx EDITOR nvim 10 - set -gx XDG_CONFIG_HOME $HOME/.config 11 - set -gx TERM xterm-256color 12 - 13 - set -g dotfiles $HOME/dotfiles 14 - set -g tmux_config_file $HOME/.tmux.conf 15 - set -g jj_config_file (jj config path --user) 16 - 17 - # ๎™ Git Prompt Customization 18 - set -g __fish_git_prompt_showdirtystate true 19 - set -g __fish_git_prompt_char_dirtystate "*" 20 - 21 - set -gx FZF_DEFAULT_OPTS "\ 22 - --color=bg+:#313244,bg:#1e1e2e,spinner:#f5e0dc,hl:#f38ba8 \ 23 - --color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc \ 24 - --color=marker:#b4befe,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8 \ 25 - --color=selected-bg:#45475a \ 26 - --multi" 6 + source $__fish_config_dir/abbr.fish 7 + source $__fish_config_dir/ensure_path.fish 8 + source $__fish_config_dir/set_variables.fish 27 9 28 10 fzf --fish | source 29 11 zoxide init fish | source
+18
.config/fish/set_variables.fish
··· 1 + set -gx EDITOR nvim 2 + set -gx XDG_CONFIG_HOME $HOME/.config 3 + set -gx TERM xterm-256color 4 + 5 + set -g dotfiles $HOME/dotfiles 6 + set -g tmux_config_file $HOME/.tmux.conf 7 + set -g jj_config_file (jj config path --user) 8 + 9 + # ๎™ Git Prompt Customization 10 + set -g __fish_git_prompt_showdirtystate true 11 + set -g __fish_git_prompt_char_dirtystate "*" 12 + 13 + set -gx FZF_DEFAULT_OPTS "\ 14 + --color=bg+:#313244,bg:#1e1e2e,spinner:#f5e0dc,hl:#f38ba8 \ 15 + --color=fg:#cdd6f4,header:#f38ba8,info:#cba6f7,pointer:#f5e0dc \ 16 + --color=marker:#b4befe,fg+:#cdd6f4,prompt:#cba6f7,hl+:#f38ba8 \ 17 + --color=selected-bg:#45475a \ 18 + --multi"