Code Review
/
common
/
bash_it.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
c517a74
)
Changed up minimal theme
author
Mark Szymanski
<mrman208@me.com>
Tue, 17 May 2011 03:03:57 +0000
(22:03 -0500)
committer
Mark Szymanski
<mrman208@me.com>
Tue, 17 May 2011 03:03:57 +0000
(22:03 -0500)
Removed Vim prompt stuff and made the prompt cyan
themes/minimal/minimal.theme.bash
patch
|
blob
|
history
diff --git
a/themes/minimal/minimal.theme.bash
b/themes/minimal/minimal.theme.bash
index
a94c453
..
8de4a6c
100644
(file)
--- a/
themes/minimal/minimal.theme.bash
+++ b/
themes/minimal/minimal.theme.bash
@@
-1,19
+1,5
@@
prompt_setter() {
- if [[ $? -eq 0 ]]; then
- if [ ! $VIMRUNTIME = "" ]
- then
- PS1="{vim} \W "
- else
- PS1="\W "
- fi
- else
- if [ ! $VIMRUNTIME = "" ]
- then
- PS1="{vim} ${bold_red}\W ${normal}"
- else
- PS1="${bold_red}\W ${normal}"
- fi
- fi
+ PS1="${cyan}\W${normal} "
}
PROMPT_COMMAND=prompt_setter