antibody fucking sucks

This commit is contained in:
odrling 2019-01-11 18:50:29 +01:00
parent 6b256e2f01
commit 73f522a0a2
7 changed files with 26 additions and 31 deletions

3
.gitignore vendored
View file

@ -53,3 +53,6 @@ Cache
# ignore antibody
!/.antibody/plugins
# zsh modules
!.zsh/

39
.gitmodules vendored
View file

@ -1,30 +1,15 @@
[submodule ".local/bin"]
path = .local/bin
url = gitea@git.odrling.xyz:odrling/localbins.git
[submodule ".config/fisherman/git_util"]
path = .config/fish/fisherman/git_util
url = https://github.com/fisherman/git_util
[submodule ".config/fisherman/host_info"]
path = .config/fish/fisherman/host_info
url = https://github.com/fisherman/host_info
[submodule ".config/fisherman/humanize_duration"]
path = .config/fish/fisherman/humanize_duration
url = https://github.com/fisherman/humanize_duration
[submodule ".config/fisherman/last_job_id"]
path = .config/fish/fisherman/last_job_id
url = https://github.com/fisherman/last_job_id
[submodule ".config/fisherman/metro"]
path = .config/fish/fisherman/metro
url = https://github.com/fisherman/metro
[submodule ".config/fisherman/pisces"]
path = .config/fish/fisherman/pisces
url = https://github.com/laughedelic/pisces
[submodule ".config/fisherman/pwd_info"]
path = .config/fish/fisherman/pwd_info
url = https://github.com/fisherman/pwd_info
[submodule ".config/fisherman/pwd_is_home"]
path = .config/fish/fisherman/pwd_is_home
url = https://github.com/fisherman/pwd_is_home
[submodule ".config/fisherman/segment"]
path = .config/fish/fisherman/segment
url = https://github.com/fisherman/segment
[submodule ".zsh/zsh-syntax-highlighting"]
path = .zsh/zsh-syntax-highlighting
url = https://github.com/zsh-users/zsh-syntax-highlighting.git
[submodule ".zsh/zsh-completions"]
path = .zsh/zsh-completions
url = https://github.com/zsh-users/zsh-completions.git
[submodule ".zsh/zsh-autosuggestions"]
path = .zsh/zsh-autosuggestions
url = https://github.com/zsh-users/zsh-autosuggestions
[submodule ".zsh/omz/oh-my-zsh"]
path = .zsh/omz/oh-my-zsh
url = https://github.com/robbyrussell/oh-my-zsh.git

1
.zsh/omz/oh-my-zsh Submodule

@ -0,0 +1 @@
Subproject commit fabee55948776e2e4c210e9dcd75e7bc38c02bec

@ -0,0 +1 @@
Subproject commit 70f36c007db30a5fe1edf2b63664088b502a729c

1
.zsh/zsh-completions Submodule

@ -0,0 +1 @@
Subproject commit cf565254e26bb7ce03f51889e9a29953b955b1fb

@ -0,0 +1 @@
Subproject commit 1e34c4aa0bcbdde5173aab15600784edf0a212fd

11
.zshrc
View file

@ -4,10 +4,11 @@ if ! which antibody > /dev/null 2>&1; then
curl -sL git.io/antibody | sh -s
fi
[ ! -f ~/.antibody/plugins.sh ] && antibody bundle < ~/.antibody/plugins > ~/.antibody/plugins.sh
[ -f ~/.bash.command-not-found ] && source ~/.bash.command-not-found
source ~/.antibody/plugins.sh
source ~/.zsh/*/*.zsh
source ~/.zsh/omz/oh-my-zsh/lib/spectrum.zsh
source ~/.zsh/omz/oh-my-zsh/plugins/pass
source ~/.zsh/omz/oh-my-zsh/plugins/ssh-agent
source ~/.zsh/omz/oh-my-zsh/plugins/adb
zstyle ':completion:*' completer _expand _complete _ignored _correct _approximate
zstyle ':completion:*' matcher-list 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'r:|[._-]=** r:|=**'
@ -60,5 +61,7 @@ alias top="htop"
alias dotmodules="dots submodule update --recursive --remote"
alias ytdl="youtube-dl"
alias pass="gopass"
alias vim="nvim -u ~/.vimrc"
alias vi="vim"
[ -f ~/.zshrc.local ] && . ~/.zshrc.local