Skip to content

Instantly share code, notes, and snippets.

@alanpilloud
Created December 22, 2016 15:55
Show Gist options
  • Save alanpilloud/32a24b7ec8de67f46b309f89bd0952bc to your computer and use it in GitHub Desktop.
Save alanpilloud/32a24b7ec8de67f46b309f89bd0952bc to your computer and use it in GitHub Desktop.
.vimrc file
set t_Co=256
" enable color scheme
syntax on
set background=dark
colorscheme solarized
set cursorline
" show line numbers
set number
" always display airline
set laststatus=2
" dont wrap lines
set nowrap
" indent mode
set smartindent
set expandtab
set shiftwidth=4
set softtabstop=4
" enable :find to search recursively
set path+=**
" enable suggestions when using Tab in :find command
set wildmenu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment