From 5a6ed5fcb3b89d0c2b4e8ba2953c4ba806d4b171 Mon Sep 17 00:00:00 2001 From: Kumar Damani Date: Fri, 26 Apr 2019 14:49:26 -0400 Subject: added vim dir --- .../plugged/lightline.vim/plugin/lightline.vim | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 vim/.vim/plugged/lightline.vim/plugin/lightline.vim (limited to 'vim/.vim/plugged/lightline.vim/plugin') diff --git a/vim/.vim/plugged/lightline.vim/plugin/lightline.vim b/vim/.vim/plugged/lightline.vim/plugin/lightline.vim new file mode 100644 index 0000000..fc8f598 --- /dev/null +++ b/vim/.vim/plugged/lightline.vim/plugin/lightline.vim @@ -0,0 +1,26 @@ +" ============================================================================= +" Filename: plugin/lightline.vim +" Author: itchyny +" License: MIT License +" Last Change: 2018/06/22 08:49:00. +" ============================================================================= + +if exists('g:loaded_lightline') || v:version < 700 + finish +endif +let g:loaded_lightline = 1 + +let s:save_cpo = &cpo +set cpo&vim + +augroup lightline + autocmd! + autocmd WinEnter,BufWinEnter,FileType,SessionLoadPost * call lightline#update() + autocmd SessionLoadPost * call lightline#highlight() + autocmd ColorScheme * if !has('vim_starting') || expand('') !=# 'macvim' + \ | call lightline#update() | call lightline#highlight() | endif + autocmd CursorMoved,BufUnload * call lightline#update_once() +augroup END + +let &cpo = s:save_cpo +unlet s:save_cpo -- cgit v1.2.3