Fixed .gitignore problems

pull/3/head
Aaron Johnson 7 years ago
parent bbc9cfff71
commit 5c88ff2579

3
.gitignore vendored

@ -1,3 +1,2 @@
color
zsh.conf
/zsh.conf

@ -0,0 +1,36 @@
# ZSH Configuration
BSD_MODE=false #Some options must be specified differently in BSD
SYNTAX_HIGHLIGHT=true #On-the-fly syntax highlighting of commands that you type
# Prompt Style
PROMPT_STYLE=bsd #Valid options: bsd, bsd2, ar5
# Example prompts:
# bsd: user@host:~/storage/git[git-branch]%
# ar5: [21:32][user@host][~/storage/git][git-branch]%
#
# (bsd2 is the same as bsd, except has separate colours for user and host name and a neutral '@')
# Prompt Colours
COLOR_USER=cyan
COLOR_HOST=cyan
COLOR_PWD=cyan
COLOR_VCS=green
### Color Legend #
# # COLOR_USER: Primary prompt colour; user@host
# # COLOR_HOST: Optional prompt colour (if selected prompt supports it)
# # COLOR_PWD: Secondary prompt colour; ~/storage/photos
# # COLOR_VCS: Version Control System colour; [git-branch]
#
# Colour list (both the number and the colour name listed are valid):
# 0 black
# 1 red
# 2 green
# 3 yellow
# 4 blue
# 5 magenta
# 6 cyan
# 7 white
#
Loading…
Cancel
Save