Inital Commit
This commit is contained in:
190
config/zsh/abbreviations
Normal file
190
config/zsh/abbreviations
Normal file
@@ -0,0 +1,190 @@
|
||||
abbr -g ...="../.."
|
||||
abbr -g ....="../../.."
|
||||
abbr -g .....="../../../.."
|
||||
abbr -g ......="../../../../.."
|
||||
abbr -g grep="rg"
|
||||
abbr -="cd -"
|
||||
abbr _="sudo "
|
||||
abbr 1="cd -"
|
||||
abbr 2="cd -2"
|
||||
abbr 3="cd -3"
|
||||
abbr 4="cd -4"
|
||||
abbr 5="cd -5"
|
||||
abbr 6="cd -6"
|
||||
abbr 7="cd -7"
|
||||
abbr 8="cd -8"
|
||||
abbr 9="cd -9"
|
||||
abbr afind="ack -il"
|
||||
abbr cat="bat"
|
||||
abbr cd="z"
|
||||
abbr g="git"
|
||||
abbr ga="git add"
|
||||
abbr gaa="git add --all"
|
||||
abbr gap="git apply"
|
||||
abbr gapa="git add --patch"
|
||||
abbr gau="git add --update"
|
||||
abbr gav="git add --verbose"
|
||||
abbr gb="git branch"
|
||||
abbr gba="git branch -a"
|
||||
abbr gbD="git branch -D"
|
||||
abbr gbd="git branch -d"
|
||||
abbr gbda="git branch --no-color --merged | command grep -vE \"^(\+|\*|\s*(master|develop|dev)\s*\$)\" | command xargs -n 1 git branch -d"
|
||||
abbr gbl="git blame -b -w"
|
||||
abbr gbnm="git branch --no-merged"
|
||||
abbr gbr="git branch --remote"
|
||||
abbr gbs="git bisect"
|
||||
abbr gbsb="git bisect bad"
|
||||
abbr gbsg="git bisect good"
|
||||
abbr gbsr="git bisect reset"
|
||||
abbr gbss="git bisect start"
|
||||
abbr 'gc!'="git commit -v --amend"
|
||||
abbr gc="git commit -v"
|
||||
abbr 'gca!'="git commit -v -a --amend"
|
||||
abbr gca="git commit -v -a"
|
||||
abbr gcam="git commit -a -m"
|
||||
abbr 'gcan!'="git commit -v -a --no-edit --amend"
|
||||
abbr 'gcans!'="git commit -v -a -s --no-edit --amend"
|
||||
abbr gcb="git checkout -b"
|
||||
abbr gcd="git checkout develop"
|
||||
abbr gcf="git config --list"
|
||||
abbr gcl="git clone --recurse-submodules"
|
||||
abbr gclean="git clean -id"
|
||||
abbr gcm="git checkout master"
|
||||
abbr gcmsg="git commit -m"
|
||||
abbr 'gcn!'="git commit -v --no-edit --amend"
|
||||
abbr gco="git checkout"
|
||||
abbr gcount="git shortlog -sn"
|
||||
abbr gcp="git cherry-pick"
|
||||
abbr gcpa="git cherry-pick --abort"
|
||||
abbr gcpc="git cherry-pick --continue"
|
||||
abbr gcs="git commit -S"
|
||||
abbr gcsm="git commit -s -m"
|
||||
abbr gd="git diff"
|
||||
abbr gdca="git diff --cached"
|
||||
abbr gdct="git describe --tags \$(git rev-list --tags --max-count=1)"
|
||||
abbr gdcw="git diff --cached --word-diff"
|
||||
abbr gds="git diff --staged"
|
||||
abbr gdt="git diff-tree --no-commit-id --name-only -r"
|
||||
abbr gdw="git diff --word-diff"
|
||||
abbr gf="git fetch"
|
||||
abbr gfa="git fetch --all --prune"
|
||||
abbr gfg="git ls-files | grep"
|
||||
abbr gfo="git fetch origin"
|
||||
abbr gg="git gui citool"
|
||||
abbr gga="git gui citool --amend"
|
||||
abbr ggpull="git pull origin \"\$(git_current_branch)\""
|
||||
abbr ggpur="ggu"
|
||||
abbr ggpush="git push origin \"\$(git_current_branch)\""
|
||||
abbr ggsup="git branch --set-upstream-to=origin/\$(git_current_branch)"
|
||||
abbr ghh="git help"
|
||||
abbr gignore="git update-index --assume-unchanged"
|
||||
abbr gignored="git ls-files -v | grep \"^[[:lower:]]\""
|
||||
abbr git-svn-dcommit-push="git svn dcommit && git push github master:svntrunk"
|
||||
abbr gk="\gitk --all --branches"
|
||||
abbr gke="\gitk --all \$(git log -g --pretty=%h)"
|
||||
abbr gl="git pull"
|
||||
abbr glg="git log --stat"
|
||||
abbr glgg="git log --graph"
|
||||
abbr glgga="git log --graph --decorate --all"
|
||||
abbr glgm="git log --graph --max-count=10"
|
||||
abbr glgp="git log --stat -p"
|
||||
abbr glo="git log --oneline --decorate"
|
||||
abbr globurl="noglob urlglobber "
|
||||
abbr glod="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset'"
|
||||
abbr glods="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset' --date=short"
|
||||
abbr glog="git log --oneline --decorate --graph"
|
||||
abbr gloga="git log --oneline --decorate --graph --all"
|
||||
abbr glol="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'"
|
||||
abbr glola="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --all"
|
||||
abbr glols="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --stat"
|
||||
abbr glp="_git_log_prettily"
|
||||
abbr glum="git pull upstream master"
|
||||
abbr gm="git merge"
|
||||
abbr gma="git merge --abort"
|
||||
abbr gmom="git merge origin/master"
|
||||
abbr gmt="git mergetool --no-prompt"
|
||||
abbr gmtvim="git mergetool --no-prompt --tool=vimdiff"
|
||||
abbr gmum="git merge upstream/master"
|
||||
abbr gp="git push"
|
||||
abbr gpd="git push --dry-run"
|
||||
abbr 'gpf!'="git push --force"
|
||||
abbr gpf="git push --force-with-lease"
|
||||
abbr gpoat="git push origin --all && git push origin --tags"
|
||||
abbr gpristine="git reset --hard && git clean -dffx"
|
||||
abbr gpsup="git push --set-upstream origin \$(git_current_branch)"
|
||||
abbr gpu="git push upstream"
|
||||
abbr gpv="git push -v"
|
||||
abbr gr="git remote"
|
||||
abbr gra="git remote add"
|
||||
abbr grb="git rebase"
|
||||
abbr grba="git rebase --abort"
|
||||
abbr grbc="git rebase --continue"
|
||||
abbr grbd="git rebase develop"
|
||||
abbr grbi="git rebase -i"
|
||||
abbr grbm="git rebase master"
|
||||
abbr grbs="git rebase --skip"
|
||||
abbr grev="git revert"
|
||||
abbr grh="git reset"
|
||||
abbr grhh="git reset --hard"
|
||||
abbr grm="git rm"
|
||||
abbr grmc="git rm --cached"
|
||||
abbr grmv="git remote rename"
|
||||
abbr groh="git reset origin/\$(git_current_branch) --hard"
|
||||
abbr grrm="git remote remove"
|
||||
abbr grs="git restore"
|
||||
abbr grset="git remote set-url"
|
||||
abbr grss="git restore --source"
|
||||
abbr grt="cd \"\$(git rev-parse --show-toplevel || echo .)\""
|
||||
abbr gru="git reset --"
|
||||
abbr grup="git remote update"
|
||||
abbr grv="git remote -v"
|
||||
abbr gs="git status"
|
||||
abbr gsb="git status -sb"
|
||||
abbr gsd="git svn dcommit"
|
||||
abbr gsh="git show"
|
||||
abbr gsi="git submodule init"
|
||||
abbr gsps="git show --pretty=short --show-signature"
|
||||
abbr gsr="git svn rebase"
|
||||
abbr gss="git status -s"
|
||||
abbr gst="git status"
|
||||
abbr gsta="git stash push"
|
||||
abbr gstaa="git stash apply"
|
||||
abbr gstall="git stash --all"
|
||||
abbr gstc="git stash clear"
|
||||
abbr gstd="git stash drop"
|
||||
abbr gstl="git stash list"
|
||||
abbr gstp="git stash pop"
|
||||
abbr gsts="git stash show --text"
|
||||
abbr gstu="git stash --include-untracked"
|
||||
abbr gsu="git submodule update"
|
||||
abbr gsw="git switch"
|
||||
abbr gswc="git switch -c"
|
||||
abbr gtl="gtl(){ git tag --sort=-v:refname -n -l \"\${1}*\" }; noglob gtl"
|
||||
abbr gts="git tag -s"
|
||||
abbr gtv="git tag | sort -V"
|
||||
abbr gunignore="git update-index --no-assume-unchanged"
|
||||
abbr gunwip="git log -n 1 | grep -q -c \"\-\-wip\-\-\" && git reset HEAD~1"
|
||||
abbr gup="git pull --rebase"
|
||||
abbr gupa="git pull --rebase --autostash"
|
||||
abbr gupav="git pull --rebase --autostash -v"
|
||||
abbr gupv="git pull --rebase -v"
|
||||
abbr gwch="git whatchanged -p --abbrev-commit --pretty=medium"
|
||||
abbr gwip="git add -A; git rm \$(git ls-files --deleted) 2> /dev/null; git commit --no-verify --no-gpg-sign -m \"--wip-- [skip ci]\""
|
||||
abbr history="omz_history"
|
||||
abbr l="exa -al"
|
||||
abbr ls="exa"
|
||||
abbr md="mkdir -p"
|
||||
abbr mutt="neomutt"
|
||||
abbr o="xdg-open"
|
||||
abbr rpc="patch -p0 < ~/.local/share/console.diff"
|
||||
abbr s="source venv/bin/activate"
|
||||
abbr t="~/.config/tmux/start-tmux"
|
||||
abbr vbspwm="v ~/.config/bspwm/bspwmrc"
|
||||
abbr vc="v ~/.config/nvim/init.vim"
|
||||
abbr vt="v ~/.config/tmux/tmux.conf"
|
||||
abbr wget="curl -O"
|
||||
abbr which-command="whence"
|
||||
abbr za="zoxide add"
|
||||
abbr zi="z -i"
|
||||
abbr zq="zoxide query"
|
||||
abbr zr="zoxide remove"
|
||||
1
config/zsh/alias.zshrc
Normal file
1
config/zsh/alias.zshrc
Normal file
@@ -0,0 +1 @@
|
||||
alias ll='exa -al'
|
||||
21
config/zsh/env.sh
Normal file
21
config/zsh/env.sh
Normal file
@@ -0,0 +1,21 @@
|
||||
export GTK_RC_FILES="$XDG_CONFIG_HOME"/gtk-1.0/gtkrc
|
||||
export GTK2_RC_FILES="$XDG_CONFIG_HOME"/gtk-2.0/gtkrc
|
||||
export NOTMUCH_CONFIG="$XDG_CONFIG_HOME"/notmuch/notmuchrc
|
||||
export NMBGIT="$XDG_DATA_HOME"/notmuch/nmbug
|
||||
export LESSKEY="$XDG_CONFIG_HOME"/less/lesskey
|
||||
export LESSHISTFILE="$XDG_CACHE_HOME"/less/history
|
||||
export RUSTUP_HOME="$XDG_DATA_HOME"/rustup
|
||||
export ANDROID_SDK_HOME="$XDG_CONFIG_HOME"/android
|
||||
export ADB_VENDOR_KEY="$XDG_CONFIG_HOME"/android
|
||||
export NPM_CONFIG_USERCONFIG=$XDG_CONFIG_HOME/npm/npmrc
|
||||
export WINEPREFIX="$XDG_DATA_HOME"/wineprefixes/default
|
||||
export CARGO_HOME="$XDG_DATA_HOME"/cargo
|
||||
export _JAVA_OPTIONS=-Djava.util.prefs.userRoot="$XDG_CONFIG_HOME"/java
|
||||
export GRADLE_USER_HOME="$XDG_DATA_HOME"/gradle
|
||||
export PYLINTHOME="$XDG_CACHE_HOME"/pylint
|
||||
export NPM_CONFIG_USERCONFIG=$XDG_CONFIG_HOME/npm/npmrc
|
||||
# export XAUTHORITY="$XDG_RUNTIME_DIR"/Xauthority
|
||||
export npm_config_prefix=$XDG_DATA_HOME/node_modules
|
||||
export gnome_user_dir="$XDG_CONFIG_HOME"/gnome/apps
|
||||
export ANDROID_PREFS_ROOT="$XDG_CONFIG_HOME"/android
|
||||
export ANDROID_EMULATOR_HOME="$XDG_DATA_HOME"/android/emulator
|
||||
1
config/zsh/plugins/adb
Symbolic link
1
config/zsh/plugins/adb
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/adb
|
||||
1
config/zsh/plugins/alias-finder
Symbolic link
1
config/zsh/plugins/alias-finder
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/alias-finder
|
||||
1
config/zsh/plugins/ansible
Symbolic link
1
config/zsh/plugins/ansible
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/ansible
|
||||
1
config/zsh/plugins/ant
Symbolic link
1
config/zsh/plugins/ant
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/ant
|
||||
1
config/zsh/plugins/apache2-macports
Symbolic link
1
config/zsh/plugins/apache2-macports
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/apache2-macports
|
||||
1
config/zsh/plugins/arcanist
Symbolic link
1
config/zsh/plugins/arcanist
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/arcanist
|
||||
1
config/zsh/plugins/archlinux
Symbolic link
1
config/zsh/plugins/archlinux
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/archlinux
|
||||
1
config/zsh/plugins/asdf
Symbolic link
1
config/zsh/plugins/asdf
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/asdf
|
||||
1
config/zsh/plugins/autoenv
Symbolic link
1
config/zsh/plugins/autoenv
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/autoenv
|
||||
1
config/zsh/plugins/autojump
Symbolic link
1
config/zsh/plugins/autojump
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/autojump
|
||||
1
config/zsh/plugins/autopep8
Symbolic link
1
config/zsh/plugins/autopep8
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/autopep8
|
||||
1
config/zsh/plugins/aws
Symbolic link
1
config/zsh/plugins/aws
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/aws
|
||||
1
config/zsh/plugins/battery
Symbolic link
1
config/zsh/plugins/battery
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/battery
|
||||
1
config/zsh/plugins/bbedit
Symbolic link
1
config/zsh/plugins/bbedit
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/bbedit
|
||||
1
config/zsh/plugins/bgnotify
Symbolic link
1
config/zsh/plugins/bgnotify
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/bgnotify
|
||||
1
config/zsh/plugins/boot2docker
Symbolic link
1
config/zsh/plugins/boot2docker
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/boot2docker
|
||||
1
config/zsh/plugins/bower
Symbolic link
1
config/zsh/plugins/bower
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/bower
|
||||
1
config/zsh/plugins/branch
Symbolic link
1
config/zsh/plugins/branch
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/branch
|
||||
1
config/zsh/plugins/brew
Symbolic link
1
config/zsh/plugins/brew
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/brew
|
||||
1
config/zsh/plugins/bundler
Symbolic link
1
config/zsh/plugins/bundler
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/bundler
|
||||
1
config/zsh/plugins/cabal
Symbolic link
1
config/zsh/plugins/cabal
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/cabal
|
||||
1
config/zsh/plugins/cake
Symbolic link
1
config/zsh/plugins/cake
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/cake
|
||||
1
config/zsh/plugins/cakephp3
Symbolic link
1
config/zsh/plugins/cakephp3
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/cakephp3
|
||||
1
config/zsh/plugins/capistrano
Symbolic link
1
config/zsh/plugins/capistrano
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/capistrano
|
||||
1
config/zsh/plugins/cargo
Symbolic link
1
config/zsh/plugins/cargo
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/cargo
|
||||
1
config/zsh/plugins/cask
Symbolic link
1
config/zsh/plugins/cask
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/cask
|
||||
1
config/zsh/plugins/catimg
Symbolic link
1
config/zsh/plugins/catimg
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/catimg
|
||||
1
config/zsh/plugins/celery
Symbolic link
1
config/zsh/plugins/celery
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/celery
|
||||
1
config/zsh/plugins/chruby
Symbolic link
1
config/zsh/plugins/chruby
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/chruby
|
||||
1
config/zsh/plugins/chucknorris
Symbolic link
1
config/zsh/plugins/chucknorris
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/chucknorris
|
||||
1
config/zsh/plugins/cloudapp
Symbolic link
1
config/zsh/plugins/cloudapp
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/cloudapp
|
||||
1
config/zsh/plugins/cloudfoundry
Symbolic link
1
config/zsh/plugins/cloudfoundry
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/cloudfoundry
|
||||
1
config/zsh/plugins/codeclimate
Symbolic link
1
config/zsh/plugins/codeclimate
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/codeclimate
|
||||
1
config/zsh/plugins/coffee
Symbolic link
1
config/zsh/plugins/coffee
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/coffee
|
||||
1
config/zsh/plugins/colemak
Symbolic link
1
config/zsh/plugins/colemak
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/colemak
|
||||
1
config/zsh/plugins/colored-man-pages
Symbolic link
1
config/zsh/plugins/colored-man-pages
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/colored-man-pages
|
||||
1
config/zsh/plugins/colorize
Symbolic link
1
config/zsh/plugins/colorize
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/colorize
|
||||
1
config/zsh/plugins/command-not-found
Symbolic link
1
config/zsh/plugins/command-not-found
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/command-not-found
|
||||
1
config/zsh/plugins/common-aliases
Symbolic link
1
config/zsh/plugins/common-aliases
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/common-aliases
|
||||
1
config/zsh/plugins/compleat
Symbolic link
1
config/zsh/plugins/compleat
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/compleat
|
||||
1
config/zsh/plugins/composer
Symbolic link
1
config/zsh/plugins/composer
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/composer
|
||||
1
config/zsh/plugins/copybuffer
Symbolic link
1
config/zsh/plugins/copybuffer
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/copybuffer
|
||||
1
config/zsh/plugins/copydir
Symbolic link
1
config/zsh/plugins/copydir
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/copydir
|
||||
1
config/zsh/plugins/copyfile
Symbolic link
1
config/zsh/plugins/copyfile
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/copyfile
|
||||
1
config/zsh/plugins/cp
Symbolic link
1
config/zsh/plugins/cp
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/cp
|
||||
1
config/zsh/plugins/cpanm
Symbolic link
1
config/zsh/plugins/cpanm
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/cpanm
|
||||
1
config/zsh/plugins/dash
Symbolic link
1
config/zsh/plugins/dash
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/dash
|
||||
1
config/zsh/plugins/debian
Symbolic link
1
config/zsh/plugins/debian
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/debian
|
||||
1
config/zsh/plugins/dircycle
Symbolic link
1
config/zsh/plugins/dircycle
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/dircycle
|
||||
1
config/zsh/plugins/direnv
Symbolic link
1
config/zsh/plugins/direnv
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/direnv
|
||||
1
config/zsh/plugins/dirhistory
Symbolic link
1
config/zsh/plugins/dirhistory
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/dirhistory
|
||||
1
config/zsh/plugins/dirpersist
Symbolic link
1
config/zsh/plugins/dirpersist
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/dirpersist
|
||||
1
config/zsh/plugins/django
Symbolic link
1
config/zsh/plugins/django
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/django
|
||||
1
config/zsh/plugins/dnf
Symbolic link
1
config/zsh/plugins/dnf
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/dnf
|
||||
1
config/zsh/plugins/dnote
Symbolic link
1
config/zsh/plugins/dnote
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/dnote
|
||||
1
config/zsh/plugins/docker
Symbolic link
1
config/zsh/plugins/docker
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/docker
|
||||
1
config/zsh/plugins/docker-compose
Symbolic link
1
config/zsh/plugins/docker-compose
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/docker-compose
|
||||
1
config/zsh/plugins/docker-machine
Symbolic link
1
config/zsh/plugins/docker-machine
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/docker-machine
|
||||
1
config/zsh/plugins/doctl
Symbolic link
1
config/zsh/plugins/doctl
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/doctl
|
||||
1
config/zsh/plugins/dotenv
Symbolic link
1
config/zsh/plugins/dotenv
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/dotenv
|
||||
1
config/zsh/plugins/dotnet
Symbolic link
1
config/zsh/plugins/dotnet
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/dotnet
|
||||
1
config/zsh/plugins/droplr
Symbolic link
1
config/zsh/plugins/droplr
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/droplr
|
||||
1
config/zsh/plugins/drush
Symbolic link
1
config/zsh/plugins/drush
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/drush
|
||||
1
config/zsh/plugins/eecms
Symbolic link
1
config/zsh/plugins/eecms
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/eecms
|
||||
1
config/zsh/plugins/emacs
Symbolic link
1
config/zsh/plugins/emacs
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/emacs
|
||||
1
config/zsh/plugins/ember-cli
Symbolic link
1
config/zsh/plugins/ember-cli
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/ember-cli
|
||||
1
config/zsh/plugins/emoji
Symbolic link
1
config/zsh/plugins/emoji
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/emoji
|
||||
1
config/zsh/plugins/emoji-clock
Symbolic link
1
config/zsh/plugins/emoji-clock
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/emoji-clock
|
||||
1
config/zsh/plugins/emotty
Symbolic link
1
config/zsh/plugins/emotty
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/emotty
|
||||
1
config/zsh/plugins/encode64
Symbolic link
1
config/zsh/plugins/encode64
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/encode64
|
||||
1
config/zsh/plugins/extract
Symbolic link
1
config/zsh/plugins/extract
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/extract
|
||||
1
config/zsh/plugins/fabric
Symbolic link
1
config/zsh/plugins/fabric
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/fabric
|
||||
1
config/zsh/plugins/fancy-ctrl-z
Symbolic link
1
config/zsh/plugins/fancy-ctrl-z
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/fancy-ctrl-z
|
||||
1
config/zsh/plugins/fasd
Symbolic link
1
config/zsh/plugins/fasd
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/fasd
|
||||
1
config/zsh/plugins/fastfile
Symbolic link
1
config/zsh/plugins/fastfile
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/fastfile
|
||||
1
config/zsh/plugins/fbterm
Symbolic link
1
config/zsh/plugins/fbterm
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/fbterm
|
||||
1
config/zsh/plugins/fd
Symbolic link
1
config/zsh/plugins/fd
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/fd
|
||||
1
config/zsh/plugins/fedora
Symbolic link
1
config/zsh/plugins/fedora
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/fedora
|
||||
1
config/zsh/plugins/firewalld
Symbolic link
1
config/zsh/plugins/firewalld
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/firewalld
|
||||
1
config/zsh/plugins/flutter
Symbolic link
1
config/zsh/plugins/flutter
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/flutter
|
||||
1
config/zsh/plugins/forklift
Symbolic link
1
config/zsh/plugins/forklift
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/forklift
|
||||
1
config/zsh/plugins/fossil
Symbolic link
1
config/zsh/plugins/fossil
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/fossil
|
||||
1
config/zsh/plugins/frontend-search
Symbolic link
1
config/zsh/plugins/frontend-search
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/frontend-search
|
||||
1
config/zsh/plugins/fzf
Symbolic link
1
config/zsh/plugins/fzf
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/fzf
|
||||
1
config/zsh/plugins/gas
Symbolic link
1
config/zsh/plugins/gas
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/gas
|
||||
1
config/zsh/plugins/gatsby
Symbolic link
1
config/zsh/plugins/gatsby
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/gatsby
|
||||
1
config/zsh/plugins/gb
Symbolic link
1
config/zsh/plugins/gb
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/gb
|
||||
1
config/zsh/plugins/gcloud
Symbolic link
1
config/zsh/plugins/gcloud
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/gcloud
|
||||
1
config/zsh/plugins/geeknote
Symbolic link
1
config/zsh/plugins/geeknote
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/geeknote
|
||||
1
config/zsh/plugins/gem
Symbolic link
1
config/zsh/plugins/gem
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/gem
|
||||
1
config/zsh/plugins/git
Symbolic link
1
config/zsh/plugins/git
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/git
|
||||
1
config/zsh/plugins/git-auto-fetch
Symbolic link
1
config/zsh/plugins/git-auto-fetch
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/git-auto-fetch
|
||||
1
config/zsh/plugins/git-escape-magic
Symbolic link
1
config/zsh/plugins/git-escape-magic
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/git-escape-magic
|
||||
1
config/zsh/plugins/git-extras
Symbolic link
1
config/zsh/plugins/git-extras
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/git-extras
|
||||
1
config/zsh/plugins/git-flow
Symbolic link
1
config/zsh/plugins/git-flow
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/git-flow
|
||||
1
config/zsh/plugins/git-flow-avh
Symbolic link
1
config/zsh/plugins/git-flow-avh
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/git-flow-avh
|
||||
1
config/zsh/plugins/git-hubflow
Symbolic link
1
config/zsh/plugins/git-hubflow
Symbolic link
@@ -0,0 +1 @@
|
||||
/usr/share/oh-my-zsh/plugins/git-hubflow
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user