omnicomplete set, some cleaning up
This commit is contained in:
parent
4b6ee52aac
commit
13f1e16721
10
vimrc
10
vimrc
|
@ -86,7 +86,6 @@ Plugin 'mattn/emmet-vim'
|
|||
call vundle#end() " required
|
||||
filetype plugin indent on " required
|
||||
" To ignore plugin indent changes, instead use:
|
||||
"filetype plugin on
|
||||
"
|
||||
" Brief help
|
||||
" :PluginList - lists configured plugins
|
||||
|
@ -215,10 +214,9 @@ set colorcolumn=80
|
|||
|
||||
set foldmethod=manual
|
||||
|
||||
" indents and margins
|
||||
|
||||
set autoindent
|
||||
filetype plugin indent on " file type based indentation
|
||||
|
||||
set omnifunc=syntaxcomplete#complete
|
||||
|
||||
syntax on
|
||||
set mouse=a
|
||||
|
@ -314,8 +312,8 @@ set completeopt+=noinsert
|
|||
|
||||
set complete-=i
|
||||
set complete-=t
|
||||
let g:mucomplete#chains = { 'default' : ['ulti', 'tags', 'c-p', 'incl', 'file'] }
|
||||
let g:mucomplete#popup_direction = { 'path' : 1, 'c-p': 1, 'tags': 1, 'incl': 1 }
|
||||
let g:mucomplete#chains = { 'default' : ['ulti', 'omni', 'tags', 'c-p', 'incl', 'file'] }
|
||||
" let g:mucomplete#popup_direction = { 'path' : 1, 'c-p': 1, 'tags': 1, 'incl': 1 }
|
||||
set shortmess+=c " Shut off completion messages
|
||||
set belloff+=ctrlg " If Vim beeps during completion
|
||||
|
||||
|
|
Loading…
Reference in New Issue