We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d93b4 commit 58ebd0fCopy full SHA for 58ebd0f
xsettings/Xmodmap.symlink
@@ -0,0 +1,4 @@
1
+!!No Caps Lock
2
+clear lock
3
+!! Make Caps_lock an escape key.
4
+keycode 0x42 = Escape
zsh/prompt.zsh
@@ -65,6 +65,17 @@ virtualenv_prompt(){
65
echo "%{$fg_bold[yellow]%}$(%M | awk '{print $1}')%{$reset_color%}"
66
}
67
68
+alias rvm-prompt="$HOME/.rvm/bin/rvm-prompt"
69
+
70
+# basically, only show the rvm-prompt if it exists
71
+rvm_prompt () {
72
+ if [[ -e `which rvm-prompt`]]; then
73
+ echo "%{$fg_bold[yellow]%}$(rvm-prompt)%{reset_color%}"
74
+ else
75
+ echo ""
76
+ fi
77
+}
78
79
precmd() {
80
title "zsh" "%m" "%55<...<%~"
81
set_prompt
0 commit comments