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

Configure Feed

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

catppuccin starship

kacaii 218ab67f af514501

+50 -4
+4 -2
.config/fish/config.fish
··· 10 10 set -gx TERM xterm-256color 11 11 12 12 # ๏…› Config files 13 - set -g dotfiles $HOME/dotfiles 14 - set -g tmux_config_file $HOME/.tmux.conf 13 + set -g DOTFILES $HOME/dotfiles 14 + set -g TMUX_CONFIG_FILE $HOME/.tmux.conf 15 + set -gx STARSHIP_CONFIG $XDG_CONFIG_HOME/starship.toml 16 + set -g JJ_CONFIG_FILE $XDG_CONFIG_HOME/jj/config.toml 15 17 16 18 # ๎™ Git Prompt Customization 17 19 set -g __fish_git_prompt_showdirtystate true
+2 -2
.config/fish/shell/abbr.fish
··· 1 1 abbr fcg $EDITOR $__fish_config_dir/config.fish 2 - abbr tcg $EDITOR $tmux_config_file 3 - abbr jcg $EDITOR $jj_config_file 2 + abbr tcg $EDITOR $TMUX_CONFIG_FILE 3 + abbr jcg $EDITOR $JJ_CONFIG_FILE 4 4 5 5 # Reload shell 6 6 abbr s "source $__fish_config_dir/config.fish"
+44
.config/starship.toml
··· 1 + "$schema" = 'https://starship.rs/config-schema.json' 2 + 3 + palette = "catppuccin_mocha" 4 + add_newline = false 5 + 6 + [character] 7 + success_symbol = "[[๓ฐ„›](green) โฏ](peach)" 8 + error_symbol = "[[๓ฐ„›](red) โฏ](peach)" 9 + vimcmd_symbol = "[๓ฐ„› โฎ](subtext1)" 10 + 11 + [git_branch] 12 + style = "bold mauve" 13 + 14 + [directory] 15 + truncation_length = 4 16 + style = "bold lavender" 17 + 18 + [palettes.catppuccin_mocha] 19 + rosewater = "#f5e0dc" 20 + flamingo = "#f2cdcd" 21 + pink = "#f5c2e7" 22 + mauve = "#cba6f7" 23 + red = "#f38ba8" 24 + maroon = "#eba0ac" 25 + peach = "#fab387" 26 + yellow = "#f9e2af" 27 + green = "#a6e3a1" 28 + teal = "#94e2d5" 29 + sky = "#89dceb" 30 + sapphire = "#74c7ec" 31 + blue = "#89b4fa" 32 + lavender = "#b4befe" 33 + text = "#cdd6f4" 34 + subtext1 = "#bac2de" 35 + subtext0 = "#a6adc8" 36 + overlay2 = "#9399b2" 37 + overlay1 = "#7f849c" 38 + overlay0 = "#6c7086" 39 + surface2 = "#585b70" 40 + surface1 = "#45475a" 41 + surface0 = "#313244" 42 + base = "#1e1e2e" 43 + mantle = "#181825" 44 + crust = "#11111b"