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

Configure Feed

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

add variables to main fish script

Kacaii 667de906 6ea1b3a7

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