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

vim配置分享(持续更新中)

时间:2014-10-24 01:46:12      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   sp   div   

  作者:zhanhailiang 日期:2014-10-24
set nocompatible
set nu
 
"" 自动缩进
syntax on
set autoindent
 
"" tab, shift缩进字符
set tabstop=4
set shiftwidth=4
set expandtab
 
"" 空白符,tab展示
set list
set listchars=tab:>-,trail:-
 
"" ctags
"" map <C-F12> :!ctags -R --c++-kinds=+p --fields=+iaS --extra=+q .<CR>
"" taglist
let Tlist_Show_One_File=1
let Tlist_Exit_OnlyWindow=1
nnoremap <F8> :TlistToggle<CR>
 
"" 代码折叠
set fdm=syntax
 
"" catgs配置解决E257问题 http://blog.csdn.net/billfeller/article/details/40316501
set tags=tags;
set autochdir

vim配置分享(持续更新中)

标签:style   blog   http   color   io   os   ar   sp   div   

原文地址:http://blog.csdn.net/billfeller/article/details/40413569

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