From 02370ea2b1a72e2185e9b7ec0f034481c579a163 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Fri, 1 Sep 2017 14:43:51 +0200 Subject: [PATCH] Zsh config --- .aliases | 3 +++ .zshrc | 21 +++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .aliases create mode 100644 .zshrc diff --git a/.aliases b/.aliases new file mode 100644 index 0000000..3ee946d --- /dev/null +++ b/.aliases @@ -0,0 +1,3 @@ +alias mkdir='mkdir -p' +alias cat='ccat' +alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME' diff --git a/.zshrc b/.zshrc new file mode 100644 index 0000000..acdbb4f --- /dev/null +++ b/.zshrc @@ -0,0 +1,21 @@ +source /usr/share/antigen.zsh +source $HOME/.aliases + +# Load the oh-my-zsh's library. +antigen use oh-my-zsh + +# Bundles from the default repo (robbyrussell's oh-my-zsh). +antigen bundle git +antigen bundle heroku +antigen bundle pip +antigen bundle lein +antigen bundle command-not-found + +# Syntax highlighting bundle. +antigen bundle zsh-users/zsh-syntax-highlighting + +# Load the theme. +antigen theme gentoo + +# Tell Antigen that you're done. +antigen apply