Created
June 8, 2018 22:12
-
-
Save mimukit/749f4bb27e8d0331cda43598649ba99c to your computer and use it in GitHub Desktop.
Custom zsh configuration file for terminal only environments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PATH="/usr/local/bin:$PATH" | |
source $HOME/antigen.zsh | |
# Imports | |
POWERLEVEL9K_INSTALLATION_PATH=$ANTIGEN_BUNDLES/bhilburn/powerlevel9k | |
# Load the oh-my-zsh's library. | |
antigen use oh-my-zsh | |
# Install plugins from the default repo (robbyrussell's oh-my-zsh). | |
antigen bundle git | |
antigen bundle jump | |
antigen bundle sublime | |
antigen bundle yarn | |
antigen bundle command-not-found | |
# Install plugins form custom repo | |
#antigen bundle lukechilds/zsh-nvm | |
antigen bundle zsh-users/zsh-syntax-highlighting | |
antigen bundle zsh-users/zsh-autosuggestions | |
antigen bundle chrissicool/zsh-256color | |
# Load the theme. | |
# antigen theme robbyrussell | |
antigen theme gnzh | |
# Tell Antigen that you're done. | |
antigen apply | |
# Colorise the top Tabs of Iterm2 with the same color as background | |
# Just change the 18/26/33 wich are the rgb values | |
echo -e "\033]6;1;bg;red;brightness;18\a" | |
echo -e "\033]6;1;bg;green;brightness;26\a" | |
echo -e "\033]6;1;bg;blue;brightness;33\a" | |
# Autosuggestion color | |
export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=cyan" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment