My default editor is pico at my server. I use Bash and Linux.

I tried to change Vim to be my default editor unsuccessfully by

echo vim > $EDITOR

How can I change Vim my default editor?

[edit]

The following code does not work in .bashrc

export EDITOR='vim'
link|improve this question

What unix/linux are you using, and specifically what shell? Bash, csh, other? – Zoredache Mar 15 '09 at 1:26
@Zoredache: Bash and Linux. – Masi Mar 15 '09 at 2:02
1  
do you have vim installed? and if so is it on your PATH? – anon Mar 24 '09 at 16:02
@Neil: I have Vim installed. It is apparently also in my PATH, since I can start vim by the command vim in Terminal. – Masi Mar 24 '09 at 18:13
Additionally, if you only wish to temporarily change the default editor for one command (for the case of git, not wanting to use vi) you can do EDITOR=nano git commit --amend or whatever the command happens to be, and EDITOR will be set to nano just for that command. – adam_0 Mar 14 '11 at 0:16
feedback

6 Answers

up vote 15 down vote accepted

Adding

export EDITOR=vim

to your .bashrc should really do the trick. (There a no quotes necessary and, depending on what quotes you used, they may be the cause for your problem.)

You must open a new shell (or enter source .bashrc at the prompt) after modifying .bashrc for the modification to take effect.

What is the program from which you want vim to be started?

EDIT: I haven't used git, but the documentation (http://www.kernel.org/pub/software/scm/git/docs/git-commit.html) reads ``The editor used to edit the commit log message will be chosen from the GIT_EDITOR environment variable, the core.editor configuration variable, the VISUAL environment variable, or the EDITOR environment variable (in that order).''

So check whether one of these variables is set:

echo $GIT_EDITOR $VISUAL $EDITOR
git config --get-all core.editor

For me,

export VISUAL=vim

solved the problem.

link|improve this answer
@Jochen: The above command does not work. The program is Git from which I want vim to be started. – Masi Mar 24 '09 at 16:00
Just out of curiosity: Did using the VISUAL environment variable solve your problem? – Jochen Walter Apr 1 '09 at 7:53
echo $GIT_EDITOR $VISUAL $EDITOR gives me pico pico. How can I change these variables? – Masi Apr 6 '09 at 18:17
You can change them with export GIT_EDITOR=vim export VISUAL=vim export EDITOR=vim (If the variable are already exported, you can omit the ``export´´). – Jochen Walter Apr 7 '09 at 7:13
feedback

You can use the git config option core.editor to set the editor of your liking, eg nano

$ git config [--global] core.editor "nano"

You can also change this by editing the .gitconfig file in your home directory (global) or git repo (create it if it doesn't exist) if you don't have shell access:

...
[user]
  name = Your Name
  email = your@email.address
[core]
  editor = nano
...
link|improve this answer
feedback

export EDITOR vim

should do the job

link|improve this answer
Your command does not work. I tried it also with $EDITOR unsuccessfully. – Masi Mar 15 '09 at 0:59
1  
It has to be: EDITOR=vim export EDITOR or if you use bash just export EDITOR=vim – njsf Mar 15 '09 at 1:19
feedback

I don't have an EDITOR environmental variable. Perhaps you could specify your distribution? My bashrc does define this:

alias vi='vim'

and supposedly if vim can't find a file called .vimrc in your home directory it runs in "compatibility mode" and you only get vi features until you say type :nocp

If it is based on your EDITOR environmental variable you would set it like this in BASH:

export EDITOR='vim'
link|improve this answer
You don't need an EDITOR environment variable to create one ;) – adam_0 Mar 14 '11 at 0:14
feedback

Since things have changed in MAC X you will have to add following in .profile file in base directory of the user export EDITOR='vim'

you can follow following instructions:

1> open terminal

2> type - cd [hit return/enter (this will take you to base directory)]

3> type - echo "export EDITOR='vim'" >> .profile (hit return/enter and you are done)

4> (restart terminal)

=========================

OR just type:

echo "export EDITOR='vim'" >> ~/.profile

hit enter and restart

link|improve this answer
feedback

Since none of these answers are helping me:

Here is what the git docs are saying: http://www.kernel.org/pub/software/scm/git/docs/git-commit.html

The editor used to edit the commit log message will be chosen from the GIT_EDITOR environment variable, the core.editor configuration variable, the VISUAL environment variable, or the EDITOR environment variable (in that order).

Here is the BASH man page excerpt on export (brackets are optional):

export [-fn] [name[=word]]

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.