this repo has no description

Stowize fish config

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