Question:

Hi i need some help installing a vimrc file?

by  |  earlier

0 LIKES UnLike

Hi,

I have this code and i want to use it as my default settings when i open up vim, the thing is though i dont know what to do with it... i have this code

" Turn off useless toolbar

set guioptions-=T

" Turn off menu bar (toggle with CTRL+F11)

set guioptions-=m

" Turn off right-hand scroll-bar (toggle with CTRL+F7)

set guioptions-=r

" CTRL+F11 to toggle the menu bar

nmap <C-F11> :if &guioptions=~'m' \| set guioptions-=m \| else \| set guioptions+=m \| endif<cr>

" CTRL+F7 to toggle the right-hand scroll bar

nmap <C-F7> :if &guioptions=~'r' \| set guioptions-=r \| else \| set guioptions+=r \| endif<cr>

Now i have been told to save it as a .vimrc file which i have in my admin folder...

what next...? please can someone walk me through this

 Tags:

   Report

2 ANSWERS


  1. If you have written it, do what it says, save it as .vimrc in your home folder.


  2. You might want to check this site, somehow related to vimrc

    http://vimdoc.sourceforge.net/htmldoc/us...

Question Stats

Latest activity: earlier.
This question has 2 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.
Unanswered Questions