mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
Converted OMZ themes to native ZSH themes.
This commit is contained in:
parent
94656ce760
commit
d5ba17feac
11 changed files with 240 additions and 248 deletions
|
|
@ -1,24 +1,25 @@
|
|||
# Path to oh-my-zsh.
|
||||
export OMZ="$HOME/.oh-my-zsh"
|
||||
|
||||
# Set the name of the theme to load (see $OMZ/themes/).
|
||||
# Setting it to 'random' loads a random theme.
|
||||
export ZSH_THEME="robbyrussell"
|
||||
OMZ="$HOME/.oh-my-zsh"
|
||||
|
||||
# Set to 'true' to enable case-sensitivity.
|
||||
export CASE_SENSITIVE='false'
|
||||
CASE_SENSITIVE='false'
|
||||
|
||||
# Set to 'true' to disable color (auto set on dumb terminals).
|
||||
export DISABLE_COLOR='false'
|
||||
DISABLE_COLOR='false'
|
||||
|
||||
# Set to 'true' to disable auto setting the tab and window titles.
|
||||
export DISABLE_AUTO_TITLE='false'
|
||||
DISABLE_AUTO_TITLE='false'
|
||||
|
||||
# Set the plugins to load (see $OMZ/plugins/).
|
||||
# Example: plugins=(rails git textmate ruby lighthouse)
|
||||
# Example: plugins=(git lighthouse rails ruby textmate)
|
||||
plugins=(git)
|
||||
|
||||
# This will make you scream: OH MY ZSH!
|
||||
source "$OMZ/oh-my-zsh.zsh"
|
||||
|
||||
# Load the prompt theme (type prompt -l to list all themes).
|
||||
# Setting it to 'random' loads a random theme.
|
||||
[[ "$TERM" != 'dumb' ]] && prompt sorin || prompt off
|
||||
|
||||
# Customize to your needs...
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue