Created
November 5, 2017 02:04
-
-
Save philographer/0948d68048ad9c740ac93764ba3f6616 to your computer and use it in GitHub Desktop.
vimrc config
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
"https://github.com/tpope/vim-pathogen | |
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
" show existing tab with 4 spaces width | |
set tabstop=4 | |
" when indenting with '>', use 4 spaces width | |
set shiftwidth=4 | |
" On pressing tab, insert 4 spaces | |
set expandtab | |
set autoindent | |
set cindent | |
set nu | |
set showmatch | |
set matchtime=3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment