Vim Tips Wiki
Tags: Visual edit apiedit
 
(6 intermediate revisions by 4 users not shown)
Line 19: Line 19:
 
colorscheme morning
 
colorscheme morning
 
</pre>
 
</pre>
 
==In Kubuntu exemple short:
 
:colo evening
 
   
 
==Comments==
 
==Comments==
MS Windows: Make sure <code>HOME</code> exists and is set to where your <code>vimrc</code> file is located. The <code>$HOME</code> environment variable can be set by going to your desktop, right click on "My Computer", click the "Advanced" tab, select "Environment Variables". If <code>HOME</code> is not in the list of variables, create a new variable named HOME and point it to the location of your vimrc.
+
MS Windows: By default Vim calculates the <code>HOME</code> directory as <code>%HOMEDIR%%HOMEPATH%</code>. If this is not the location you want, make sure <code>HOME</code> exists and is set to where your <code>vimrc</code> file is located. The <code>$HOME</code> environment variable can be set by going to your desktop, right click on "My Computer", click the "Advanced" tab, select "Environment Variables". If <code>HOME</code> is not in the list of variables, create a new variable named HOME and point it to the location of your vimrc. This is normally <code>C:\Documents And Settings\<USERNAME></code> and you'll have to create <code>vimfiles\colors</code> and put your new colorscheme in this folder.
  +
  +
An easy way to set this on Windows that should be forward/backwards compatible is to run in a cmd prompt this command <code>setx /S %COMPUTERNAME% /U %USERNAME% HOME %HOMEPATH%</code> which will set the <code>HOME</code> variable to the current user's home folder.
   
 
On Unix/Linux/MacOSX this should be preset and can be seen by going to a command prompt/Terminal window and typing <code>echo $HOME</code> or in vim enter <code>:echo $HOME</code>.
 
On Unix/Linux/MacOSX this should be preset and can be seen by going to a command prompt/Terminal window and typing <code>echo $HOME</code> or in vim enter <code>:echo $HOME</code>.
Line 34: Line 33:
   
 
----
 
----
You can set your preferred color scheme in gvim for MS Windows by editing the file <code>vimrc</code> in <code>C:\Program Files\Vim</code> or the location where you installed Vim.
+
You can set your preferred color scheme in gvim for MS Windows by editing the file <code>_vimrc</code> in <code>C:\Program Files\Vim</code> or the location where you installed Vim.
  +
:This is bad advice; you should place your [[vimrc]] in your home directory, as noted in the other comments here. Putting anything in Program Files will risk all your changes being lost any time you install a new version of Vim, and additionally it will affect all uses instead of just your login. --[[User:Fritzophrenic|Fritzophrenic]] ([[User talk:Fritzophrenic|talk]]) 17:34, June 24, 2015 (UTC)
   
Edit <code>vimrc</code> and add a line like <code>colors <your color scheme></code> as the last line. For example:
+
Edit <code>_vimrc</code> and add a line like <code>colors <your color scheme></code> as the last line. For example:
   
 
<pre>
 
<pre>

Latest revision as of 15:31, 18 May 2016

Tip 1036 Printable Monobook Previous Next

created 2005 · complexity basic · author vineeth · version 6.0


In gvim, after changing the default color scheme, the next time gvim is started, the default setting is restored.

To retain the color scheme add colorscheme <scheme_name> to vimrc.

For example:

colorscheme morning

Comments[]

MS Windows: By default Vim calculates the HOME directory as %HOMEDIR%%HOMEPATH%. If this is not the location you want, make sure HOME exists and is set to where your vimrc file is located. The $HOME environment variable can be set by going to your desktop, right click on "My Computer", click the "Advanced" tab, select "Environment Variables". If HOME is not in the list of variables, create a new variable named HOME and point it to the location of your vimrc. This is normally C:\Documents And Settings\<USERNAME> and you'll have to create vimfiles\colors and put your new colorscheme in this folder.

An easy way to set this on Windows that should be forward/backwards compatible is to run in a cmd prompt this command setx /S %COMPUTERNAME% /U %USERNAME% HOME %HOMEPATH% which will set the HOME variable to the current user's home folder.

On Unix/Linux/MacOSX this should be preset and can be seen by going to a command prompt/Terminal window and typing echo $HOME or in vim enter :echo $HOME.


Sometimes if colorscheme <colorscheme> is not loading properly on startup, edit your gvimrc file and comment out or remove the lines containing highlight aka hi.

Save your changes and start vim.


You can set your preferred color scheme in gvim for MS Windows by editing the file _vimrc in C:\Program Files\Vim or the location where you installed Vim.

This is bad advice; you should place your vimrc in your home directory, as noted in the other comments here. Putting anything in Program Files will risk all your changes being lost any time you install a new version of Vim, and additionally it will affect all uses instead of just your login. --Fritzophrenic (talk) 17:34, June 24, 2015 (UTC)

Edit _vimrc and add a line like colors <your color scheme> as the last line. For example:

colors koehler

Save the file and start gvim you will see your color scheme.


MS Windows: (this particular example applies to any instance of gvim), :help gvimrc states that for MS Win32 if vimrc is not in $HOME, the _gvimrc in $VIM. You may display these by issuing, :echo $VIM, or :echo $VIM from within gvim.


See also Switch_color_schemes, Color highlighting on telnet, Use the console colors in gvim


DG12 18:59, December 6, 2009 (UTC)