this repo has no description
0
fork

Configure Feed

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

style(fish): format code with `fish_indent`

+39 -39
+39 -39
fish/config.fish
··· 1 1 if status is-interactive 2 - # Commands to run in interactive sessions can go here 3 - starship init fish | source 4 - zoxide init fish | source 2 + # Commands to run in interactive sessions can go here 3 + starship init fish | source 4 + zoxide init fish | source 5 5 6 - # Aliases 7 - alias l="exa" 8 - alias lt="exa -T" 9 - alias lT="exa -Tlh --no-user --no-time" 10 - alias ll="exa -lh --no-user" 11 - alias la="exa -lha --git --no-user" 12 - alias nv="foreground_nvim" 13 - alias gr="gh repo clone" 14 - alias glz="lazygit" 6 + # Aliases 7 + alias l="exa" 8 + alias lt="exa -T" 9 + alias lT="exa -Tlh --no-user --no-time" 10 + alias ll="exa -lh --no-user" 11 + alias la="exa -lha --git --no-user" 12 + alias nv="foreground_nvim" 13 + alias gr="gh repo clone" 14 + alias glz="lazygit" 15 15 16 - # Exported Variables 17 - set -gx PATH ~/.local/bin $PATH 16 + # Exported Variables 17 + set -gx PATH ~/.local/bin $PATH 18 18 19 - if not set -q XDG_CONFIG_HOME 20 - set -gx XDG_CONFIG_HOME "$HOME/.config" 21 - end 19 + if not set -q XDG_CONFIG_HOME 20 + set -gx XDG_CONFIG_HOME "$HOME/.config" 21 + end 22 22 23 - set -gx EDITOR nvim 23 + set -gx EDITOR nvim 24 24 25 - # set $TERM as wezterm to support undercurl in neovim (see wezterm#2505) 26 - if test "$TERM_PROGRAM" = "WezTerm" 27 - set -gx TERM wezterm 28 - end 25 + # set $TERM as wezterm to support undercurl in neovim (see wezterm#2505) 26 + if test "$TERM_PROGRAM" = WezTerm 27 + set -gx TERM wezterm 28 + end 29 29 30 - ## Go 31 - set -gx GOROOT "$(brew --prefix golang)/libexec" 32 - set -gx GOPATH $HOME/go 33 - set -gx PATH $PATH $GOROOT/bin $GOPATH/bin 30 + ## Go 31 + set -gx GOROOT "$(brew --prefix golang)/libexec" 32 + set -gx GOPATH $HOME/go 33 + set -gx PATH $PATH $GOROOT/bin $GOPATH/bin 34 34 35 - ## Flutter 36 - set -gx PATH $PATH /opt/homebrew/Caskroom/flutter/2.10.4/flutter/bin 35 + ## Flutter 36 + set -gx PATH $PATH /opt/homebrew/Caskroom/flutter/2.10.4/flutter/bin 37 37 38 - ## Rust 39 - set -gx PATH $PATH $HOME/.cargo/bin 38 + ## Rust 39 + set -gx PATH $PATH $HOME/.cargo/bin 40 40 41 - ## FZF 42 - set -gx FZF_DEFAULT_OPTS "--bind='ctrl-u:preview-half-page-up' \ 41 + ## FZF 42 + set -gx FZF_DEFAULT_OPTS "--bind='ctrl-u:preview-half-page-up' \ 43 43 --bind='ctrl-d:preview-half-page-down'" 44 44 45 - # brew shell completion (see: https://docs.brew.sh/Shell-Completion) 46 - if test -d (brew --prefix)"/share/fish/completions" 47 - set -gx fish_complete_path $fish_complete_path (brew --prefix)/share/fish/completions 48 - end 49 - if test -d (brew --prefix)"/share/fish/vendor_completions.d" 50 - set -gx fish_complete_path $fish_complete_path (brew --prefix)/share/fish/vendor_completions.d 51 - end 45 + # brew shell completion (see: https://docs.brew.sh/Shell-Completion) 46 + if test -d (brew --prefix)"/share/fish/completions" 47 + set -gx fish_complete_path $fish_complete_path (brew --prefix)/share/fish/completions 48 + end 49 + if test -d (brew --prefix)"/share/fish/vendor_completions.d" 50 + set -gx fish_complete_path $fish_complete_path (brew --prefix)/share/fish/vendor_completions.d 51 + end 52 52 end