Новая тема

This commit is contained in:
eKa
2019-10-17 14:30:04 +05:00
parent 1556ee0394
commit ab63e47075
5 changed files with 83 additions and 47 deletions

View File

@@ -10,6 +10,17 @@ export ZSH=$HOME/.dots/zsh
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="eof"
# Setup eof theme mode
# [mega|big|small|tiny]
#ZSH_THEME_EOF_MODE="small"
# Auto setup eof theme mode
if [[ -n "$TMUX" ]]; then
ZSH_THEME_EOF_MODE="tiny"
else
ZSH_THEME_EOF_MODE="small"
fi
# Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load
# a theme from this variable instead of looking in ~/.oh-my-zsh/themes/
@@ -24,7 +35,7 @@ ZSH_THEME="eof"
# HYPHEN_INSENSITIVE="true"
# Uncomment the following line to disable bi-weekly auto-update checks.
# DISABLE_AUTO_UPDATE="true"
DISABLE_AUTO_UPDATE="true"
# Uncomment the following line to automatically update without prompting.
# DISABLE_UPDATE_PROMPT="true"
@@ -68,7 +79,7 @@ ZSH_THEME="eof"
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git themes common-aliases)
plugins=(git themes common-aliases git-prompt)
source $ZSH/oh-my-zsh.sh