summaryrefslogtreecommitdiffstats
path: root/.zshrc
diff options
context:
space:
mode:
authorJokler <jokler@protonmail.com>2020-01-10 02:38:51 +0100
committerJokler <jokler@protonmail.com>2020-01-10 02:38:51 +0100
commitd6efe4e57f9b5f72e64bdf633cc4b94f96dd574e (patch)
tree61db79d23ba1be55c0e64a2751370e26f61d94d0 /.zshrc
parent0403d5cd6738bc9de0c686fcd602399cb6c485ae (diff)
downloaddotfiles-d6efe4e57f9b5f72e64bdf633cc4b94f96dd574e.tar.gz
dotfiles-d6efe4e57f9b5f72e64bdf633cc4b94f96dd574e.zip
Zsh: Add zplug plugins and rust specific env vars
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc11
1 files changed, 10 insertions, 1 deletions
diff --git a/.zshrc b/.zshrc
index 4c0ccf8..a0cf765 100644
--- a/.zshrc
+++ b/.zshrc
@@ -1,10 +1,19 @@
export ZSH="/home/jokler/.oh-my-zsh"
ZSH_THEME="blinks"
-plugins=(git)
+export RUSTFLAGS="-C link-arg=-fuse-ld=lld"
+export RUST_BACKTRACE=full
+
+plugins=(git cargo rust ripgrep wd)
source $ZSH/oh-my-zsh.sh
+source /usr/share/zsh/scripts/zplug/init.zsh
source /usr/share/doc/pkgfile/command-not-found.zsh
+source /home/jokler/.config/broot/launcher/bash/br
+
+zplug 'wfxr/forgit'
+zplug 'Tarrasch/zsh-bd'
+zplug load
alias rm="/usr/bin/rm -I"
alias mv="/usr/bin/mv -i"