vim-airline-themes/plugin/airline-themes.vim

16 lines
330 B
VimL
Raw Permalink Normal View History

2021-01-29 05:11:03 +00:00
" MIT License. Copyright (c) 2013-2021 Bailey Ling & Contributors.
2016-01-28 03:23:12 +00:00
" vim: et ts=2 sts=2 sw=2
2019-12-13 09:23:23 +00:00
let s:save_cpo = &cpo
set cpo&vim
2019-11-27 03:19:34 +00:00
scriptencoding utf-8
if &cp || v:version < 702 || (exists('g:loaded_airline_themes') && g:loaded_airline_themes)
2016-01-28 03:23:12 +00:00
finish
endif
let g:loaded_airline_themes = 1
2019-12-13 09:23:23 +00:00
let &cpo = s:save_cpo
unlet s:save_cpo