Last active
August 29, 2015 14:08
-
-
Save aegyed91/ecebe148abde209d946d to your computer and use it in GitHub Desktop.
Vim configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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