加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

我的vim配置

发布时间:2020-12-15 17:07:49 所属栏目:安全 来源:网络整理
导读:set nocompatible " requiredfiletype off " requiredset nuset encoding=utf-8set cursorline" set the runtime path to include Vundle and initializeset rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()"-------For color----------"syntax enablecol
set nocompatible              " required
filetype off                  " required
set nu
set encoding=utf-8
set cursorline

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

"-------For color----------"
syntax enable
colorscheme monokai
let python_highlight_all=1
syntax on

"---------For code folding----------"
set foldmethod=indent
set foldlevel=99
nnoremap <space> za

"------- For indent--------"
au BufNewFile,BufRead *.py
     set tabstop=4 |
     set softtabstop=4 |
     set shiftwidth=4 |
     set textwidth=79 |
     set expandtab |
     set autoindent |
     set fileformat=unix |
set autoindent
set smartindent

"------------------YouCompleteMe------------------"
let g:ycm_autoclose_preview_window_after_completion=1
map <leader>g  :YcmCompleter GoToDefinitionElseDeclaration<CR>

" alternatively,pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle,required
Plugin 'gmarik/Vundle.vim'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'scrooloose/syntastic'
Plugin 'nvie/vim-flake8'
Plugin 'kien/ctrlp.vim'
Plugin 'valloric/YouCompleteMe'
Plugin 'Lokaltog/powerline',{'rtp': 'powerline/bindings/vim/'}



" Add all your plugins here (note older versions of Vundle used Bundle instead of Plugin)
" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required

补充:

  1. gcc升级到5.0 TO 编译Ycm
    参考地址http://www.cnblogs.com/loadof...

  2. vim升级到8.0并添加python支持
    参考地址:

    • vim升级 http://www.linuxidc.com/Linux...

    • 添加python支持 http://jingyan.baidu.com/arti...

  3. 下载monokai配色文件
    https://github.com/sickill/vi...

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读