Skip to content

Instantly share code, notes, and snippets.

@aegyed91
Last active August 29, 2015 14:08
Show Gist options
  • Save aegyed91/ecebe148abde209d946d to your computer and use it in GitHub Desktop.
Save aegyed91/ecebe148abde209d946d to your computer and use it in GitHub Desktop.
Vim configuration
" pathogen init | https://github.com/tpope/vim-pathogen
execute pathogen#infect()
" syntax highlight
syntax on
" tab indent size
set tabstop=4
" show line numbers
set number
" File type based indentation
filetype plugin indent on
" set vim background to dark
set background=dark
" https://github.com/altercation/vim-colors-solarized
let g:solarized_termcolors=256
" https://github.com/altercation/vim-colors-solarized
colorscheme solarized
" emmet-vim with <tab> trigger | https://coderwall.com/p/_uhrxw
imap <expr> <tab> emmet#expandAbbrIntelligent("\<tab>")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment