Skip to content

Instantly share code, notes, and snippets.

@lacostenycoder
Created March 6, 2017 17:42
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 lacostenycoder/875f3771d269d0101c852e710bb0ca9b to your computer and use it in GitHub Desktop.
Save lacostenycoder/875f3771d269d0101c852e710bb0ca9b to your computer and use it in GitHub Desktop.
Basic vimrc file
syntax on
set shiftwidth=2
set number
set tabstop=2
set backspace=2
set paste
set hlsearch
set ruler
set laststatus=2
nnoremap <C-L> :nohl<CR><C-L>
hi StatusLine ctermfg = darkblue
" Turn on the WiLd menu
set wildmenu
" Ignore compiled files
set wildignore=*.o,*~,*.pyc
" Ignore case when searching
set ignorecase
" When searching try to be smart about cases
set smartcase
" Makes search act like search in modern browsers
set incsearch
" more cool stuffs here https://amix.dk/vim/vimrc.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment