美文网首页
vim配置文件推荐

vim配置文件推荐

作者: LanceAdd | 来源:发表于2018-02-24 11:08 被阅读0次

记录下我的vim简单配置,防止我忘了

环境:deepin 15.5

vim版本:8.0

语法包支持:Python,C,Golang

set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'git://git.wincent.com/command-t.git'
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
Plugin 'https://github.com/scrooloose/nerdtree.git'
Plugin 'https://github.com/Lokaltog/vim-powerline'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'vim-syntastic/syntastic'
Plugin 'Yggdroot/indentLine'
Plugin 'jiangmiao/auto-pairs'
Plugin 'kien/ctrlp.vim'
Plugin 'Valloric/YouCompleteMe'
Plugin 'fatih/vim-go'
call vundle#end()
filetype plugin indent on

syntax on
set nu
set tabstop=4
set softtabstop=4
set shiftwidth=4
set autoindent
set cindent
set cursorline
set ruler
set nobackup


autocmd vimenter * NERDTree
map <F4> :NERDTreeToggle<CR>
autocmd VimEnter * wincmd w

相关文章

网友评论

      本文标题:vim配置文件推荐

      本文链接:https://www.haomeiwen.com/subject/oylqxftx.html