this repo has no description
1
fork

Configure Feed

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

Stowize fish config

+23 -14
+20
fish/.config/fish/completions/ptags.fish
··· 1 + complete -c ptags -n "__fish_use_subcommand" -s t -l thread -d 'Number of threads' 2 + complete -c ptags -n "__fish_use_subcommand" -s f -l file -d 'Output filename ( filename \'-\' means output to stdout )' 3 + complete -c ptags -n "__fish_use_subcommand" -l bin-ctags -d 'Path to ctags binary' 4 + complete -c ptags -n "__fish_use_subcommand" -l bin-git -d 'Path to git binary' 5 + complete -c ptags -n "__fish_use_subcommand" -s c -l opt-ctags -d 'Options passed to ctags' 6 + complete -c ptags -n "__fish_use_subcommand" -s g -l opt-git -d 'Options passed to git' 7 + complete -c ptags -n "__fish_use_subcommand" -l opt-git-lfs -d 'Options passed to git-lfs' 8 + complete -c ptags -n "__fish_use_subcommand" -s e -l exclude -d 'Glob pattern of exclude file ( ex. --exclude \'*.rs\' )' 9 + complete -c ptags -n "__fish_use_subcommand" -l completion -d 'Generate shell completion file' -r -f -a "bash fish zsh powershell" 10 + complete -c ptags -n "__fish_use_subcommand" -s s -l stat -d 'Show statistics' 11 + complete -c ptags -n "__fish_use_subcommand" -s v -l verbose -d 'Verbose mode' 12 + complete -c ptags -n "__fish_use_subcommand" -l exclude-lfs -d 'Exclude git-lfs tracked files' 13 + complete -c ptags -n "__fish_use_subcommand" -l include-untracked -d 'Include untracked files' 14 + complete -c ptags -n "__fish_use_subcommand" -l include-ignored -d 'Include ignored files' 15 + complete -c ptags -n "__fish_use_subcommand" -l include-submodule -d 'Include submodule files' 16 + complete -c ptags -n "__fish_use_subcommand" -l validate-utf8 -d 'Validate UTF8 sequence of tag file' 17 + complete -c ptags -n "__fish_use_subcommand" -l unsorted -d 'Disable tags sort' 18 + complete -c ptags -n "__fish_use_subcommand" -l config -d 'Generate configuration sample file' 19 + complete -c ptags -n "__fish_use_subcommand" -s h -l help -d 'Prints help information' 20 + complete -c ptags -n "__fish_use_subcommand" -s V -l version -d 'Prints version information'
fish/.gitignore fish/.config/fish/.gitignore
-9
fish/Makefile
··· 1 - XDG_CONFIG_HOME ?= ${HOME}/.config 2 - 3 - PWD = $(shell pwd) 4 - 5 - install: 6 - $(LN) ${PWD} $(XDG_CONFIG_HOME)/fish 7 - fish -c 'fundle install' 8 - 9 - .PHONY: install
+3 -5
fish/config.fish fish/.config/fish/config.fish
··· 6 6 set -x LESS '-SRFXi' 7 7 set -x ERL_AFLAGS '-kernel shell_history enabled' 8 8 9 - set fish_user_paths ~/Workspace/hauleth/dotfiles/bin \ 10 - ~/.cargo/bin \ 11 - /usr/local/opt/gettext/bin \ 12 - ~/.cache/rebar3/bin/ 9 + set fish_user_paths ~/Workspace/hauleth/dotfiles/bin ~/.cargo/bin /usr/local/opt/gettext/bin ~/.cache/rebar3/bin/ 13 10 14 11 if not functions -q fundle 15 12 eval (curl -sfL https://git.io/fundle-install) ··· 25 22 keychain --eval --quiet -Q id_ed25519 | source 26 23 end 27 24 28 - test -e {$HOME}/.iterm2_shell_integration.fish ; and source {$HOME}/.iterm2_shell_integration.fish 25 + test -e {$HOME}/.iterm2_shell_integration.fish 26 + and source {$HOME}/.iterm2_shell_integration.fish
fish/functions/ag.fish fish/.config/fish/functions/ag.fish
fish/functions/e.fish fish/.config/fish/functions/e.fish
fish/functions/g.fish fish/.config/fish/functions/g.fish
fish/functions/gdb.fish fish/.config/fish/functions/gdb.fish
fish/functions/ix.fish fish/.config/fish/functions/ix.fish
fish/functions/map.fish fish/.config/fish/functions/map.fish
fish/functions/mcd.fish fish/.config/fish/functions/mcd.fish
fish/functions/p.fish fish/.config/fish/functions/p.fish
fish/functions/pretty.fish fish/.config/fish/functions/pretty.fish