bit of cleanup
This commit is contained in:
parent
b1a43a5439
commit
bfdd56589f
3 changed files with 29 additions and 65 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
eeleater, 22.02.2017, Cleaned up a bit
|
||||||
|
|
||||||
eeleater, 06.10.2015, Stuff (look at commits)
|
eeleater, 06.10.2015, Stuff (look at commits)
|
||||||
|
|
||||||
eeleater, 22.09.2015, removed Ansible Completion (again...)
|
eeleater, 22.09.2015, removed Ansible Completion (again...)
|
||||||
|
|
|
@ -1,26 +0,0 @@
|
||||||
# Listing
|
|
||||||
source ${HOME}/dotfiles/zsh/aliases.d/list.zsh
|
|
||||||
|
|
||||||
# Grep
|
|
||||||
source ${HOME}/dotfiles/zsh/aliases.d/grep.zsh
|
|
||||||
|
|
||||||
# Tail
|
|
||||||
source ${HOME}/dotfiles/zsh/aliases.d/tail.zsh
|
|
||||||
|
|
||||||
# CD
|
|
||||||
source ${HOME}/dotfiles/zsh/aliases.d/cd.zsh
|
|
||||||
|
|
||||||
# Du/Find
|
|
||||||
source ${HOME}/dotfiles/zsh/aliases.d/find.zsh
|
|
||||||
|
|
||||||
# Stuff
|
|
||||||
source ${HOME}/dotfiles/zsh/aliases.d/stuff.zsh
|
|
||||||
|
|
||||||
# Interactive
|
|
||||||
source ${HOME}/dotfiles/zsh/aliases.d/interactive.zsh
|
|
||||||
|
|
||||||
# Own
|
|
||||||
source ${HOME}/dotfiles/zsh/aliases.d/own.zsh
|
|
||||||
|
|
||||||
# Transfer
|
|
||||||
source ${HOME}/dotfiles/zsh/aliases.d/transfer.zsh
|
|
66
zsh/zshrc
66
zsh/zshrc
|
@ -1,61 +1,49 @@
|
||||||
# Oh My ZSH Path
|
# Exports - mostly self-explaining
|
||||||
export ZSH=${HOME}/dotfiles/lib/ohmyzsh
|
export ZSH=${HOME}/dotfiles/lib/ohmyzsh
|
||||||
|
|
||||||
# Oh My ZSH Theme
|
|
||||||
ZSH_THEME="mortalscumbag"
|
ZSH_THEME="mortalscumbag"
|
||||||
|
|
||||||
# Disable Auto Update of Oh My ZSH
|
|
||||||
DISABLE_AUTO_UPDATE="true"
|
DISABLE_AUTO_UPDATE="true"
|
||||||
|
|
||||||
# Go Path
|
|
||||||
export GOPATH=${HOME}/go
|
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}"
|
||||||
# Path
|
|
||||||
export PATH="${GOPATH}/bin:${HOME}/.gem/ruby/2.2.0/bin:${HOME}/dotfiles/lib/util:${HOME}/dotfiles/lib/dasht/bin:${PATH}"
|
|
||||||
|
|
||||||
# Dasht
|
|
||||||
export DASHT_DOCSETS_DIR=$HOME/.local/share/Zeal/Zeal/docsets
|
export DASHT_DOCSETS_DIR=$HOME/.local/share/Zeal/Zeal/docsets
|
||||||
|
export EDITOR='nano'
|
||||||
|
|
||||||
# Plugins
|
# Plugins
|
||||||
plugins=(gem bundler composer git vagrant docker python)
|
plugins=(gem bundler composer git vagrant docker python)
|
||||||
plugins+=(npm systemd systemadmin gitignore tmux extract)
|
plugins+=(npm systemd systemadmin gitignore tmux extract)
|
||||||
plugins+=(command-not-found colored-man-pages fabric ansible)
|
plugins+=(command-not-found colored-man-pages fabric ansible)
|
||||||
|
case $(uname -n) in
|
||||||
|
"megumi|sayaka")
|
||||||
|
plugins+=(archlinux)
|
||||||
|
;;
|
||||||
|
"test|git")
|
||||||
|
plugins+=(debian)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
if [ $(uname -n) = "megumi" -o $(uname -n) = "kimari" -o $(uname -n) = "sayaka" ]; then
|
# Load Parts of Scripts
|
||||||
plugins+=(archlinux)
|
|
||||||
fi
|
|
||||||
if [ $(uname -n) = "test" -o $(uname -n) = "git" ]; then
|
|
||||||
plugins+=(debian)
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Preferred editor for local and remote sessions
|
|
||||||
export EDITOR='nano'
|
|
||||||
|
|
||||||
# Load Oh My ZSH
|
|
||||||
source ${ZSH}/oh-my-zsh.sh
|
source ${ZSH}/oh-my-zsh.sh
|
||||||
|
|
||||||
# Fix home/end key at work
|
# Syntax Highlighting
|
||||||
bindkey "^[[1~" beginning-of-line
|
|
||||||
bindkey "^[[4~" end-of-line
|
|
||||||
|
|
||||||
# Source k.sh
|
|
||||||
source ${HOME}/dotfiles/lib/k/k.sh
|
|
||||||
|
|
||||||
# Shell Syntax Highlighter
|
|
||||||
source ${HOME}/dotfiles/lib/highlighting/zsh-syntax-highlighting.zsh
|
source ${HOME}/dotfiles/lib/highlighting/zsh-syntax-highlighting.zsh
|
||||||
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)
|
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets)
|
||||||
|
|
||||||
|
# Aliases
|
||||||
|
for file in ${HOME}/dotfiles/zsh/aliases.d/*.zsh; do
|
||||||
|
source $file
|
||||||
|
done
|
||||||
|
|
||||||
|
# FZF
|
||||||
|
[ -f ${HOME}/.fzf.zsh ] && source ${HOME}/.fzf.zsh
|
||||||
|
|
||||||
|
# Local ZSHRC
|
||||||
|
[ -f ${HOME}/local.zshrc ] && source ${HOME}/local.zshrc
|
||||||
|
|
||||||
# Dircolors
|
# Dircolors
|
||||||
eval `dircolors ${HOME}/dotfiles/zsh/dircolors`
|
eval `dircolors ${HOME}/dotfiles/zsh/dircolors`
|
||||||
|
|
||||||
# Source Aliases
|
|
||||||
source ${HOME}/dotfiles/zsh/aliases.zsh
|
|
||||||
|
|
||||||
# Source FZF
|
|
||||||
[ -f ${HOME}/.fzf.zsh ] && source ${HOME}/.fzf.zsh
|
|
||||||
|
|
||||||
# Completions Path
|
# Completions Path
|
||||||
fpath=(${HOME}/dotfiles/lib/completions/src $fpath)
|
fpath=(${HOME}/dotfiles/lib/completions/src $fpath)
|
||||||
|
|
||||||
# Source local zshrc
|
# Fix home/end key at work -- still needed?
|
||||||
[ -f ${HOME}/local.zshrc ] && source ${HOME}/local.zshrc
|
bindkey "^[[1~" beginning-of-line
|
||||||
|
bindkey "^[[4~" end-of-line
|
||||||
|
|
Loading…
Add table
Reference in a new issue