Vim vimrc配置
Posted jhc888007的笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vim vimrc配置相关的知识,希望对你有一定的参考价值。
set mouse=
set nocompatible
set encoding=utf-8
syntax on
set autoindent
set smartindent
set tabstop=4
set softtabstop=4
set expandtab
set ai!
set cindent shiftwidth=4
set number
set ruler
set laststatus=2
set statusline=%<%F\\ [%l]
if has("autocmd")
autocmd BufReadPost *
\\ if line("\'\\"") > 0 && line("\'\\"") <= line("$") |
\\ exe "normal g`\\"" |
\\ endif
endif
参考文献:cnblogs.com/lovevivi/archive/2013/07/24/3210864
以上是关于Vim vimrc配置的主要内容,如果未能解决你的问题,请参考以下文章