set nocompatible " be iMproved
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" 显示行号
set number
" 当前列与行高亮
set cursorcolumn
set cursorline
" let Vundle manage Vundle
" required!
"这是vundle本身的设置
Bundle 'gmarik/vundle'
" My Bundles here:
"这里是设置你自己自定义的插件的设置vundle设置
"注意:下载的插件git为:https://github.com/godlygeek/tabular.git
"则设置为Bundle 'godlygeek/tabular'
"https://github.com/gmarik/vundle.git设置则为 Bundle 'gmarik/vundle'
"non github repos ,非git的访问地址的,格式如下:
"Bundle 'git://git.wincent.com/command-t.git'
" nerdtree插件
Plugin 'scrooloose/nerdtree'
" markdown插件(打开*.md文件,会直接打开网页)
Plugin 'godlygeek/tabular'
Plugin 'plasticboy/vim-markdown'
Plugin 'suan/vim-instant-markdown'
filetype plugin indent on " required!
"
" Brief help
" :BundleList - list configured bundles
" :BundleInstall(!) - install(update) bundles
" :BundleSearch(!) foo - search(or refresh cache first) for foo
" :BundleClean(!) - confirm(or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed..
" 打开nerdtree界面
nnoremap <silent> <F5> :NERDTree<CR>
" 显示隐藏文件
let NERDTreeShowHidden=1
我的MacVim的vimrc配置
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...