Created
December 19, 2015 19:55
-
-
Save al3rez/fdfdb9ef105b09e1a396 to your computer and use it in GitHub Desktop.
vimrc minimal
This file contains 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
set nocompatible | |
set laststatus=2 | |
set tabstop=4 | |
set softtabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set wildmode=longest,list | |
set wildmenu | |
set autoindent | |
set smartindent | |
let loaded_matchparen = 1 | |
inoremap { {}<Left> | |
inoremap {<CR> {<CR>}<Esc>O | |
inoremap {{ { | |
inoremap {} {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment