Last active
December 20, 2015 20:29
-
-
Save compnerd/6191191 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/zsh | |
# Copyright © 2013 Saleem Abdulrasool <[email protected]> | |
# vim: set et ft=sh sts=2 sw=2 ts=8 : | |
function zle-line-init zle-keymap-select { | |
RPS1="${${KEYMAP/vicmd/-- NORMAL --}/(main|viins)/-- INSERT --}" | |
RPS2=${RPS1} | |
zle reset-prompt | |
} | |
zle -N zle-line-init | |
zle -N zle-keymap-select |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment