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

Configure Feed

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

source the paths first

kacaii bc376634 de27f156

+13 -17
+3 -13
.config/fish/config.fish
··· 8 8 set -gx EDITOR nvim 9 9 set -gx XDG_CONFIG_HOME $HOME/.config 10 10 11 - source "$__fish_config_dir/modules/abbr.fish" 12 - source "$__fish_config_dir/modules/integrations.fish" 13 - source "$__fish_config_dir/modules/path.fish" 11 + source "$XDG_CONFIG_HOME/fish/modules/path.fish" 12 + source "$XDG_CONFIG_HOME/fish/modules/abbr.fish" 13 + source "$XDG_CONFIG_HOME/fish/modules/integrations.fish" 14 14 15 - # ๓ฐฏ Fzf Setup 16 - command -q fzf; and fzf --fish | source; and set -gx FZF_DEFAULT_OPTS "\ 17 - --color=bg+:#313244,spinner:#F5E0DC,hl:#F38BA8 \ 18 - --color=fg:#CDD6F4,header:#F38BA8,info:#CBA6F7,pointer:#F5E0DC \ 19 - --color=marker:#B4BEFE,fg+:#CDD6F4,prompt:#CBA6F7,hl+:#F38BA8 \ 20 - --color=selected-bg:#45475A \ 21 - --color=border:#6C7086,label:#CDD6F4 \ 22 - --style minimal \ 23 - --layout reverse --height 30% \ 24 - --preview='bat --color=always {}'" 25 15 end
+9
.config/fish/modules/integrations.fish
··· 5 5 command -q starship; and starship init fish | source 6 6 command -q batpipe; and eval (batpipe) 7 7 command -q batman; and batman --export-env | source 8 + command -q fzf; and fzf --fish | source; and set -gx FZF_DEFAULT_OPTS "\ 9 + --color=bg+:#313244,spinner:#F5E0DC,hl:#F38BA8 \ 10 + --color=fg:#CDD6F4,header:#F38BA8,info:#CBA6F7,pointer:#F5E0DC \ 11 + --color=marker:#B4BEFE,fg+:#CDD6F4,prompt:#CBA6F7,hl+:#F38BA8 \ 12 + --color=selected-bg:#45475A \ 13 + --color=border:#6C7086,label:#CDD6F4 \ 14 + --style minimal \ 15 + --layout reverse --height 30% \ 16 + --preview='bat --color=always {}'"
+1 -4
.config/fish/modules/path.fish
··· 4 4 $HOME/.fly/bin \ 5 5 $HOME/.local/bin \ 6 6 $HOME/custom_scripts \ 7 - $HOME/go/bin \ 8 - /home/linuxbrew/.linuxbrew/bin \ 9 - /home/linuxbrew/.linuxbrew/sbin \ 10 - /snap/bin 7 + $HOME/go/bin 11 8 12 9 for directory in $path_list 13 10 fish_add_path $directory