Remove plugin check

This exists check ensures that if the plugin has already loaded it won't
load again. This might be useful for plugins that shouldn't be loaded
more than once, but with a colorscheme, it means that we can't switch
to another colorscheme and come back to vim-monokai-tasty.

Obviously we want to be able to load the colorscheme anytime even if it
was loaded previously.
This commit is contained in:
Patrick Stockwell
2023-02-15 22:42:44 +11:00
parent 55dcb855be
commit 8c1052347d

View File

@@ -2,9 +2,6 @@
"
" Author: Patrick Stockwell <mail@deciphr.net>
"
if exists('g:loaded_vim_monokai_tasty')
finish
endif
hi clear
if exists('syntax_on')
@@ -632,5 +629,3 @@ hi link LspDiagnosticsUnderlineHint DiagnosticUnderlineHint
" Must be at the end, because of ctermbg=234 bug.
" https://groups.google.com/forum/#!msg/vim_dev/afPqwAFNdrU/nqh6tOM87QUJ
set background=dark
let g:loaded_vim_monokai_tasty = 1