8

How can I make my shell behave like vim? I've seen other developers do it but I never got it installed/set up on my machine.

Ubuntu 11.04

2 Answers 2

13

Put this in your ~/.bashrc:

set -o vi

Then you can edit your command line using vi keys/commands instead of emacs keys/commands.

2
  • ................yes!
    – Ramy
    Commented Oct 8, 2012 at 19:31
  • 1
    And for zsh: bindkey -v
    – Heptite
    Commented Oct 8, 2012 at 19:43
1

I didn't have to edit my .bashrc. I just set this on the command line.

$ set -o vi

For more info with examples and a downloadable cheat sheet please see http://www.catonmat.net/blog/bash-vi-editing-mode-cheat-sheet/

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .