aboutsummaryrefslogtreecommitdiff
path: root/vim/.vim/plugged/lightline.vim/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'vim/.vim/plugged/lightline.vim/plugin')
-rw-r--r--vim/.vim/plugged/lightline.vim/plugin/lightline.vim26
1 files changed, 0 insertions, 26 deletions
diff --git a/vim/.vim/plugged/lightline.vim/plugin/lightline.vim b/vim/.vim/plugged/lightline.vim/plugin/lightline.vim
deleted file mode 100644
index fc8f598..0000000
--- a/vim/.vim/plugged/lightline.vim/plugin/lightline.vim
+++ /dev/null
@@ -1,26 +0,0 @@
-" =============================================================================
-" 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