Ubuntu配置vim支持Python编程

来源:互联网 发布:linux如何进入文件夹 编辑:程序博客网 时间:2024/06/04 19:50

如未安装vim,使用下面命令安装:

sudo apt-get install vim

在用户目录下创建.vim目录,其下创建bundle目录:

mkdir .vim\bundle

安装Bundle/Vundle:

git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle

创建或编辑用户目录下的.vimrc文件,添加如下内容:

set nocompatibleset rtp+=~/.vim/bundle/vundle/call vundle#rc()" let Vundle manage Vundle" required!Bundle 'gmarik/vundle'" The bundles you install will be listed hereBundle 'scrooloose/nerdtree'Bundle 'davidhalter/jedi-vim'filetype plugin indent on" The rest of your config follows here.augroup vimrc_autocmdsautocmd!" highlight characters past column 120autocmd FileType python highlight Excess ctermbg=DarkGrey guibg=Blackautocmd FileType python match Excess /\%120v.*/autocmd FileType python set nowrapaugroup END" NerdTree Shortcut.map <f2> :NERDTreeToggle<cr>" automatically change window’s cwd to file’s dirset autochdir" Prefer spaces to tabsset tabstop=4set shiftwidth=4set expandtabset nu!

打开vim,键入命令“:BundleInstall”,等待自动安装插件完成(下面显示“done”)

在vim中键入命令“:BundleList”可以查看安装的插件。

0 0
原创粉丝点击