Skip to content

Instantly share code, notes, and snippets.

@kumarldh
Created August 17, 2015 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kumarldh/92bbae70556c633d15d2 to your computer and use it in GitHub Desktop.
Save kumarldh/92bbae70556c633d15d2 to your computer and use it in GitHub Desktop.
My vimrc file
syntax enable " enable syntax processing
set tabstop=4 " number of visual spaces per TAB
set softtabstop=4 " number of spaces in tab
set expandtab " tabs are space
set number " show line numbers
set showcmd " show command in bottom bar
set cursorline " highlight current line
filetype indent on " load filetype-specific indent files
set wildmenu " visual autocomplete for command menu
set showmatch " highlight matching [{()}]
set incsearch " search as characters are entered
set hlsearch " highlight matches
" turn off search highlight
nnoremap <leader><space> :nohlsearch<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment