Created
August 4, 2017 04:57
-
-
Save lidgen/07d56c6beb9af743bd47ba198c033cc8 to your computer and use it in GitHub Desktop.
vim settings
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
" http://blog.csdn.net/wklken/article/details/8044678 | |
set history=1000 | |
filetype indent on | |
filetype plugin on | |
filetype plugin indent on | |
set autoread | |
set nobackup | |
set nowb | |
set noswapfile | |
set paste | |
set number | |
"set nowrap | |
set showmatch | |
set mat=2 | |
set hlsearch | |
set ignorecase | |
set incsearch | |
set smartcase | |
"set foldenable | |
"set foldmethod=syntax | |
"set foldcolumn=4 | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set softtabstop=4 | |
set ai "Auto indent | |
set si "Smart indent | |
set ruler | |
set showcmd | |
set so=7 | |
syntax enable | |
syntax on | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment