| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This document provides guides and instructions on how to quickly set up vim as part of an efficient developer's workflow.
Copy the following in the the file ~/.vimrc on Linux or C:\Users\%USERNAME%\_vimrc on Windows . If the file does not exist, create it using cd $HOME && touch .vimrc command:
" Allow easier navigation of vim editor via mouse clicks as well as copying of text outside of vim.
set mouse=a
" Prevent sections in .md files from collapsing unexpected and causing dev frustrations.
set nofoldenable " Prevent vim from automatically shrinking paragraphs for easier editing.
set secure
set clipboard=unnamedplus " Allow lines copied in vim to be pasted onto global clipboard.
set number " Display line number when editing.
set noswapfile " Optional - Prevent backup files from being generated automatically.
set nobackup " Optional - Prevent backup files from being generated automatically.
set nowritebackup " Optional - Prevent backup files from being generated automatically.Follow the instructions below to install plugins using Vundle. For Vundle installation instructions, please refer to the official Vundle GitHub page.
call vundle#begin()
Plugin '<github/url_slug>'
" Eg. Plugin 'plasticboy/vim-markdown'
call vundle#end()vim
# Within the vim shell
:PluginInstallFollow the instructions below to remove plugins using Vundle.
vim
# Within the vim shell
:PluginClean
# Indicate y to continue.choco install vim -ynotepad C:\tools\vim\_vimrcYou can configure based on the Configurations recommended settings above.
| Back | FazBrowse Home | New Git URL |