码迷,mamicode.com
首页 > 系统相关 > 详细

Vim配置整理

时间:2016-04-02 00:43:44      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:

Vim主题的简单设置:

call pathogen#infect()
syntax on"开启语法高亮
"中文支持
set fileencodings=utf-8,cp936,big5,euc-jp,euc-kr,latinl,ucs-bom
set ambiwidth=double"防止特殊符号无法输出
colorscheme desert"主题风格,desert主题很不错
"Tab,缩进,删除,删除缩进,文字宽度
set smartindent
set expandtab
set smarttab
set tabstop=4
set softabstop=4
set shiftwidth=4
set backspace=2
set textwidth=79
"启用鼠标
set mouse=a
"启用行号
set nu
"工具栏隐藏
set guioptions-=T
"Ctrl+s自动保存
nmap <C-S> :update<CR>
vmap <C-S> <C-C>:update<CR>
imap <C-S> <C-O>:update<CR>
"MiniBufExplorer
let g:miniBufExplMapWindowNavVim = 1
let g:miniBufExplMapWindowNavArrows = 1
let g:miniBufExplMapCTabSwitchBufs = 1
let g:miniBufExplModSelTarget = 1

 

Vim配置整理

标签:

原文地址:http://www.cnblogs.com/magle/p/5336215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!