about summary refs log tree commit diff stats
path: root/.config/bash
diff options
context:
space:
mode:
Diffstat (limited to '.config/bash')
-rw-r--r--.config/bash/prompt5
1 files changed, 0 insertions, 5 deletions
diff --git a/.config/bash/prompt b/.config/bash/prompt
index 4a246b4..f65f096 100644
--- a/.config/bash/prompt
+++ b/.config/bash/prompt
@@ -1,10 +1,5 @@
 # vim: ft=sh
 
-bind 'set show-mode-in-prompt on'
-
-bind 'set vi-ins-mode-string "\e[33m[i] "'
-bind 'set vi-cmd-mode-string "\e[35m[c] "'
-
 # get current branch in git repo
 function parse_git_branch() {
 	BRANCH=`git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'`