From 5c88ff25790ae4eb04952c0eafff11d5c726f9b0 Mon Sep 17 00:00:00 2001 From: Aaron Johnson Date: Sat, 18 Aug 2018 02:12:56 -0500 Subject: [PATCH] Fixed .gitignore problems --- .gitignore | 3 +-- example_configs/zsh.conf | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 example_configs/zsh.conf diff --git a/.gitignore b/.gitignore index 8d4793d..fd58b0e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ -color -zsh.conf +/zsh.conf diff --git a/example_configs/zsh.conf b/example_configs/zsh.conf new file mode 100644 index 0000000..5a3d980 --- /dev/null +++ b/example_configs/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 +# +