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
|
call vundle#end() " required
|
||||||
filetype plugin indent on " required
|
filetype plugin indent on " required
|
||||||
" To ignore plugin indent changes, instead use:
|
" To ignore plugin indent changes, instead use:
|
||||||
"filetype plugin on
|
|
||||||
"
|
"
|
||||||
" Brief help
|
" Brief help
|
||||||
" :PluginList - lists configured plugins
|
" :PluginList - lists configured plugins
|
||||||
|
@ -215,10 +214,9 @@ set colorcolumn=80
|
||||||
|
|
||||||
set foldmethod=manual
|
set foldmethod=manual
|
||||||
|
|
||||||
" indents and margins
|
|
||||||
|
|
||||||
set autoindent
|
set autoindent
|
||||||
filetype plugin indent on " file type based indentation
|
|
||||||
|
set omnifunc=syntaxcomplete#complete
|
||||||
|
|
||||||
syntax on
|
syntax on
|
||||||
set mouse=a
|
set mouse=a
|
||||||
|
@ -314,8 +312,8 @@ set completeopt+=noinsert
|
||||||
|
|
||||||
set complete-=i
|
set complete-=i
|
||||||
set complete-=t
|
set complete-=t
|
||||||
let g:mucomplete#chains = { 'default' : ['ulti', 'tags', 'c-p', 'incl', 'file'] }
|
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 }
|
" let g:mucomplete#popup_direction = { 'path' : 1, 'c-p': 1, 'tags': 1, 'incl': 1 }
|
||||||
set shortmess+=c " Shut off completion messages
|
set shortmess+=c " Shut off completion messages
|
||||||
set belloff+=ctrlg " If Vim beeps during completion
|
set belloff+=ctrlg " If Vim beeps during completion
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue