Browse Source

use MUcomplete instead of completor

MUcomplete is more lightweight and python does not have to be
installed
refactor/nvim-lua
garritfra 6 years ago
parent
commit
b1e28b80f4
  1. 13
      .vimrc

13
.vimrc

@ -9,17 +9,26 @@ call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'scrooloose/syntastic'
Plugin 'itchyny/lightline.vim'
Plugin 'maralla/completor.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'wakatime/vim-wakatime'
Plugin 'kien/ctrlp.vim'
Plugin 'prettier/vim-prettier'
Plugin 'joshdick/onedark.vim'
Plugin 'tpope/vim-fugitive'
Plugin 'lifepillar/vim-mucomplete'
call vundle#end() " required
filetype plugin indent on " required
"completion settings:
set completeopt+=menuone
set completeopt+=noselect
set completeopt+=noinsert
set shortmess+=c " Shut off completion messages
set belloff+=ctrlg " If Vim beeps during completion
let g:mucomplete#enable_auto_at_startup = 1
syntax on
set number relativenumber
set smartindent

Loading…
Cancel
Save