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

Configure Feed

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

move fish modules to `config.d`

+53 -62
+53
.config/fish/conf.d/abbr.fish
··· 1 + if status is-interactive 2 + 3 + # fish 4 + abbr -a -- fcg /home/kacaii/.config/fish/config.fish 5 + abbr -a -- s 'source /home/kacaii/.config/fish/config.fish' 6 + 7 + abbr -a -- c clear 8 + abbr -a -- fcc fish_clipboard_copy 9 + abbr -a -- ff fastfetch 10 + abbr -a -- freeze 'freeze --config user' 11 + abbr -a -- v nvim 12 + 13 + # bat 14 + abbr -a -- man batman 15 + abbr -a -- rg batgrep 16 + abbr -a -- bat prettybat 17 + 18 + # ls 19 + abbr -a -- ls 'eza --icons always' 20 + abbr -a -- ll 'eza -la --icons always' 21 + abbr -a -- tree 'eza --tree' 22 + 23 + # jj 24 + abbr -a -- jjc 'jj commit -m' 25 + abbr -a -- jjd 'jj describe -m' 26 + abbr -a -- jjn 'jj new -m' 27 + 28 + # python 29 + abbr -a -- pea 'poetry env activate | source' 30 + abbr -a -- ped deactivate 31 + abbr -a -- prs 'poetry run start' 32 + 33 + # gleam 34 + abbr -a -- gn 'gleam new' 35 + abbr -a -- gr 'gleam run' 36 + abbr -a -- gt 'gleam test' 37 + abbr -a -- gwr '\ 38 + watchexec --restart --verbose --wrap-process=session \ 39 + --stop-signal SIGTERM --exts gleam --debounce 500ms \ 40 + --watch src/ -- "clear; gleam run' 41 + abbr -a -- gwt '\ 42 + watchexec --restart --verbose --wrap-process=session \ 43 + --stop-signal SIGTERM --exts gleam --debounce 500ms \ 44 + --watch test/ -- "clear; gleam test' 45 + 46 + # zig 47 + abbr -a -- zb 'zig build' 48 + abbr -a -- zbr 'zig build run' 49 + abbr -a -- zbw 'zig build --watch -fincremental --prominent-compile-errors' 50 + abbr -a -- zbt 'zig build test --summary all' 51 + abbr -a -- zbwin 'zig build -Dtarget=x86_64-windows' 52 + 53 + end
-4
.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/path.fish" 12 - source "$__fish_config_dir/modules/abbr.fish" 13 - source "$__fish_config_dir/modules/integrations.fish" 14 - 15 11 end
-58
.config/fish/modules/abbr.fish
··· 1 - if status is-interactive 2 - # 3 - # Config files 4 - abbr fcg $EDITOR $__fish_config_dir/config.fish 5 - abbr jcg $EDITOR $XDG_CONFIG_HOME/jj/config.toml 6 - abbr gcg $EDITOR $XDG_CONFIG_HOME/ghostty/config 7 - 8 - # Reload shell 9 - abbr s "source $__fish_config_dir/config.fish" 10 - 11 - # Default 12 - abbr c clear 13 - abbr fcc fish_clipboard_copy 14 - abbr ff fastfetch 15 - abbr freeze "freeze --config user" 16 - abbr v nvim 17 - 18 - abbr man batman 19 - abbr rg batgrep 20 - abbr bat prettybat 21 - 22 - abbr ls "eza --icons always" 23 - abbr ll "eza -la --icons always" 24 - abbr tree "eza --tree" 25 - 26 - # ๓ฑ—† JJ 27 - abbr jjc "jj commit -m" 28 - abbr jjd "jj describe -m" 29 - abbr jjn "jj new -m" 30 - 31 - # ๎กง Poetry 32 - abbr pea "poetry env activate | source" 33 - abbr ped deactivate 34 - abbr prs "poetry run start" 35 - 36 - # ๏€… Gleam 37 - abbr gn "gleam new" 38 - abbr gr "gleam run" 39 - abbr gt "gleam test" 40 - 41 - abbr gwr '\ 42 - watchexec --restart --verbose --wrap-process=session \ 43 - --stop-signal SIGTERM --exts gleam --debounce 500ms \ 44 - --watch src/ -- "clear; gleam run"' 45 - 46 - abbr gwt '\ 47 - watchexec --restart --verbose --wrap-process=session \ 48 - --stop-signal SIGTERM --exts gleam --debounce 500ms \ 49 - --watch test/ -- "clear; gleam test"' 50 - 51 - # ๎šฉ Zig 52 - abbr zb "zig build" 53 - abbr zbr "zig build run" 54 - abbr zbw "zig build --watch -fincremental --prominent-compile-errors" 55 - abbr zbt "zig build test --summary all" 56 - abbr zbwin "zig build -Dtarget=x86_64-windows" 57 - 58 - end
.config/fish/modules/integrations.fish .config/fish/conf.d/integrations.fish
.config/fish/modules/path.fish .config/fish/conf.d/path.fish