dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 85a93069415e424cd11a55c54896678a53a7d829
parent 57bfdbdf388bf64f8e5e66e728f2e5021ee8dbc6
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Mon, 29 Jul 2019 23:23:27 +0200

vim: plugin changes

Remove emmet, add sparkup instead (it's older, more stable, smaller).
Also a vim traces and auto-omnicomplete.


Former-commit-id: 571870a011d0b468254e5330702b06dcf102d016
Diffstat:
Mvim/vimrc | 10++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/vim/vimrc b/vim/vimrc @@ -16,8 +16,8 @@ Plug 'guns/xterm-color-table.vim' " Simple commenting Plug 'tpope/vim-commentary' -" Emmet - must-have for HTML, awesome tag expansion -Plug 'mattn/emmet-vim' +" Emmet but simpler +Plug 'rstacruz/sparkup' " Sleuth - set tab options based on current file Plug 'tpope/vim-sleuth' @@ -100,6 +100,12 @@ Plug 'kkoomen/vim-doge' " Show git changes in the sign column Plug 'airblade/vim-gitgutter' + +" A better omnicomplete +Plug 'https://gitlab.com/yramagicman/auto-omnicomplete' + +" Substitute preview +Plug 'markonm/traces.vim' call plug#end() " }}} " Config {{{