diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2022-05-22 22:47:23 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2022-05-22 22:47:23 +0100 |
commit | 95aea6b533e71e478d61d18fac71cca116c56a4d (patch) | |
tree | 1a1f42f723772258cc54551495826768f374474a /start/lightline/plugin |
Add all the plugins I currently use
Diffstat (limited to 'start/lightline/plugin')
-rw-r--r-- | start/lightline/plugin/lightline.vim | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/start/lightline/plugin/lightline.vim b/start/lightline/plugin/lightline.vim new file mode 100644 index 0000000..fc8f598 --- /dev/null +++ b/start/lightline/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('<amatch>') !=# '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 |