changed some stuff
This commit is contained in:
parent
bfdd56589f
commit
395519026e
5 changed files with 19 additions and 17 deletions
28
zsh/zshrc
28
zsh/zshrc
|
@ -1,26 +1,31 @@
|
|||
# Exports - mostly self-explaining
|
||||
# Exports
|
||||
export ZSH=${HOME}/dotfiles/lib/ohmyzsh
|
||||
ZSH_THEME="mortalscumbag"
|
||||
DISABLE_AUTO_UPDATE="true"
|
||||
export GOPATH=${HOME}/go
|
||||
export PATH="${GOPATH}/bin:${HOME}/.gem/ruby/2.3.0/bin:${HOME}/dotfiles/lib/util:${HOME}/dotfiles/lib/dasht/bin:${PATH}"
|
||||
export PATH="${GOPATH}/bin:${HOME}/.gem/ruby/2.3.0/bin:${HOME}/dotfiles/lib/util:${HOME}/dotfiles/lib/bin:${HOME}/dotfiles/lib/dasht/bin:${PATH}"
|
||||
export DASHT_DOCSETS_DIR=$HOME/.local/share/Zeal/Zeal/docsets
|
||||
export EDITOR='nano'
|
||||
|
||||
# Plugins
|
||||
plugins=(gem bundler composer git vagrant docker python)
|
||||
plugins+=(npm systemd systemadmin gitignore tmux extract)
|
||||
plugins+=(command-not-found colored-man-pages fabric ansible)
|
||||
plugins=(gem bundler git vagrant docker python ansible)
|
||||
plugins+=(systemd systemadmin tmux command-not-found extract)
|
||||
case $(uname -n) in
|
||||
"megumi|sayaka")
|
||||
plugins+=(archlinux)
|
||||
"megumi")
|
||||
plugins+=(archlinux)
|
||||
;;
|
||||
"test|git")
|
||||
plugins+=(debian)
|
||||
"sayaka")
|
||||
plugins+=(archlinux)
|
||||
;;
|
||||
"git")
|
||||
plugins+=(debian)
|
||||
;;
|
||||
"test")
|
||||
plugins+=(debian)
|
||||
;;
|
||||
esac
|
||||
|
||||
# Load Parts of Scripts
|
||||
# OMZ
|
||||
source ${ZSH}/oh-my-zsh.sh
|
||||
|
||||
# Syntax Highlighting
|
||||
|
@ -35,9 +40,6 @@ done
|
|||
# FZF
|
||||
[ -f ${HOME}/.fzf.zsh ] && source ${HOME}/.fzf.zsh
|
||||
|
||||
# Local ZSHRC
|
||||
[ -f ${HOME}/local.zshrc ] && source ${HOME}/local.zshrc
|
||||
|
||||
# Dircolors
|
||||
eval `dircolors ${HOME}/dotfiles/zsh/dircolors`
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue