Last active
November 23, 2016 13:07
-
-
Save znut/30da99f3954ba34b96ff to your computer and use it in GitHub Desktop.
min-vimrc
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 guioptions=i | |
colorscheme evening | |
set columns=120 | |
set hidden | |
set number | |
set guifont=Consolas:h9:cANSI | |
filetype indent on | |
filetype plugin on | |
autocmd InsertLeave * if pumvisible() == 0|pclose|endif | |
set tabstop=4 | |
set expandtab | |
set shiftwidth=4 | |
set autoindent | |
set smartindent | |
syntax on | |
syntax enable | |
set hlsearch | |
set incsearch | |
set virtualedit=block | |
set list listchars=tab:»·,trail:·,precedes:«,extends:»,nbsp:. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment