我的MacVim的vimrc配置

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   :NERDTree
" 显示隐藏文件
let NERDTreeShowHidden=1

自己配置持续更新中

只为自己以后换电脑不用频繁自己在配置,直接拿来用.欢迎大神来叨扰,有什么不懂的直接留言,看到我会回复的.我在vim上还是一名渐行渐远的小白勿喷

你可能感兴趣的:(我的MacVim的vimrc配置)