]> git.rmz.io Git - dotfiles.git/blob - zsh/lib/theme-and-appearance.zsh
vim: add local rules for PKGBUILD and roslaunch
[dotfiles.git] / zsh / lib / theme-and-appearance.zsh
1 # ls colors
2 autoload colors; colors;
3 export LSCOLORS="Gxfxcxdxbxegedabagacad"
4 #export LS_COLORS
5
6 # Enable ls colors
7 ls='ls --color=auto'
8
9 setopt no_beep
10 setopt multios
11
12 if [[ x$WINDOW != x ]]
13 then
14 SCREEN_NO="%B$WINDOW%b "
15 else
16 SCREEN_NO=""
17 fi
18
19 # Apply theming defaults
20 PS1="%n@%m:%~%# "
21
22 # git theming default: Variables for theming the git info prompt
23 ZSH_THEME_GIT_PROMPT_PREFIX="git:(" # Prefix at the very beginning of the prompt, before the branch name
24 ZSH_THEME_GIT_PROMPT_SUFFIX=")" # At the very end of the prompt
25 ZSH_THEME_GIT_PROMPT_DIRTY="*" # Text to display if the branch is dirty
26 ZSH_THEME_GIT_PROMPT_CLEAN="" # Text to display if the branch is clean
27
28 # Setup the prompt with pretty colors
29 setopt prompt_subst