Skip to content

Instantly share code, notes, and snippets.

@rohitfarmer
Created August 2, 2017 14:42
Show Gist options
  • Save rohitfarmer/1b5c55e8d5e1cc5d0573e0b8073421da to your computer and use it in GitHub Desktop.
Save rohitfarmer/1b5c55e8d5e1cc5d0573e0b8073421da to your computer and use it in GitHub Desktop.
VIM RC file
set ai
set nu
set showcmd
set cursorline
syntax enable
set tabstop=4
set softtabstop=4
set expandtab
filetype indent on
set wildmenu
" highlight matching paranthesis
set showmatch
set incsearch " search as characters are entered
set hlsearch " highlight matches
" turn off search highlight
nnoremap <leader><space> :nohlsearch<CR>
set foldenable " enable folding
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment