tirenweb
tirenweb

Reputation: 31749

What format of file is .vimrc?

.vimrc is the configuration file for vim, but I have a doubt..

What kind of file is? what is the language inside of it?

Upvotes: 4

Views: 1302

Answers (3)

.vimrc is a file which is used for pre configuration of our scripting code. If we want to set some pre configurations we can declare in that file. The language used in it is generally a scripting language (shell scripting).

Upvotes: 0

IvenMS
IvenMS

Reputation: 535

Please refer the article: http://vim.wikia.com/wiki/Open_vimrc_file

The vimrc file contains optional runtime configuration settings to initialize Vim when it starts.

Upvotes: 1

prprcupofcoffee
prprcupofcoffee

Reputation: 2970

It's just Vim commands in a text file.

http://vimdoc.sourceforge.net/htmldoc/starting.html#initialization

Upvotes: 6

Related Questions