1
0
mirror of https://github.com/amix/vimrc synced 2025-09-18 10:35:01 +08:00

Update the plugins

This commit is contained in:
Rob Loach
2024-09-19 00:58:15 -04:00
parent ee7e062909
commit 22cf44758f
197 changed files with 306893 additions and 203607 deletions

View File

@ -43,15 +43,4 @@ let g:dracula#palette.color_15 = '#FFFFFF'
" }}}
" Helper function that takes a variadic list of filetypes as args and returns
" whether or not the execution of the ftplugin should be aborted.
func! dracula#should_abort(...)
if ! exists('g:colors_name') || g:colors_name !=# 'dracula'
return 1
elseif a:0 > 0 && (! exists('b:current_syntax') || index(a:000, b:current_syntax) == -1)
return 1
endif
return 0
endfunction
" vim: fdm=marker ts=2 sts=2 sw=2 fdl=0: