aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/lightline.vim/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'vim/bundle/lightline.vim/plugin')
-rw-r--r--vim/bundle/lightline.vim/plugin/lightline.vim24
1 files changed, 24 insertions, 0 deletions
diff --git a/vim/bundle/lightline.vim/plugin/lightline.vim b/vim/bundle/lightline.vim/plugin/lightline.vim
new file mode 100644
index 0000000..f396010
--- /dev/null
+++ b/vim/bundle/lightline.vim/plugin/lightline.vim
@@ -0,0 +1,24 @@
+" =============================================================================
+" Filename: plugin/lightline.vim
+" Author: itchyny
+" License: MIT License
+" Last Change: 2016/03/14 03:31:58.
+" =============================================================================
+
+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,ColorScheme,SessionLoadPost * call lightline#update()
+ autocmd ColorScheme,SessionLoadPost * call lightline#highlight()
+ autocmd CursorMoved,BufUnload * call lightline#update_once()
+augroup END
+
+let &cpo = s:save_cpo
+unlet s:save_cpo