diff options
author | Vasil Zlatanov <v@skozl.com> | 2019-04-23 09:26:41 +0100 |
---|---|---|
committer | Vasil Zlatanov <v@skozl.com> | 2019-04-23 09:26:41 +0100 |
commit | aaa43e47ff605063495749fc38c29382d241df9e (patch) | |
tree | 4c8700a05d69bb3adb82758773a3772707cbcf8d /Editor | |
parent | af86a07619cf027158aecf57003bcb68378f23ac (diff) | |
download | dotfiles-aaa43e47ff605063495749fc38c29382d241df9e.tar.gz dotfiles-aaa43e47ff605063495749fc38c29382d241df9e.tar.bz2 dotfiles-aaa43e47ff605063495749fc38c29382d241df9e.zip |
Enable deoplete and airline in vim
Diffstat (limited to 'Editor')
-rw-r--r-- | Editor/vimrc | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Editor/vimrc b/Editor/vimrc index ed83fe1..0f89509 100644 --- a/Editor/vimrc +++ b/Editor/vimrc @@ -14,7 +14,8 @@ Plugin 'tpope/vim-abolish' Plugin 'tpope/vim-surround' Plugin 'tpope/vim-repeat' "" fancy ass ide stuff -"Plugin 'Shougo/deoplete.nvim' +Plugin 'Shougo/deoplete.nvim' +Plugin 'bling/vim-airline' "Plugin 'zchee/deoplete-clang' ""Plugin 'Valloric/YouCompleteMe' "Plugin 'SirVer/ultisnips' @@ -121,14 +122,14 @@ let g:hardtime_showmsg = 0 let g:hardtime_allow_different_key = 1 ""Deoplete enable -"let g:deoplete#enable_at_startup = 1 +let g:deoplete#enable_at_startup = 1 "let g:deoplete#sources#clang#libclang_path = '/usr/lib/libclang.so' "let g:deoplete#sources#clang#clang_header = '/usr/lib/clang/' " "" supertab -"let g:SuperTabDefaultCompletionType = '<C-n>' -"let g:SuperTabCrMapping = 0 -" +let g:SuperTabDefaultCompletionType = '<C-n>' +let g:SuperTabCrMapping = 0 + "" ultisnips "let g:UltiSnipsSnippetsDir='~/.vim/snippets' "let g:UltiSnipsEditSplit='vertical' @@ -152,3 +153,6 @@ autocmd BufWinEnter * match ExtraWhitespace /\s\+$\| \+\ze\t/ autocmd InsertEnter * match ExtraWhitespace /\s\+$%#\@<!$\| \+\ze\t/ autocmd InsertLeave * match ExtraWhitespace /\s\+$\| \+\ze\t/ autocmd BufWinLeave * call clearmatches() + +"Airline symbols +let g:airline_powerline_fonts = 1 |