From 2a16612bab6a94377fb77e77f347ddb80b106ee9 Mon Sep 17 00:00:00 2001 From: riley Date: Mon, 8 Nov 2021 00:50:24 -0500 Subject: [PATCH] fix dracula colorscheme loading - stopped using manual install, now uses Plug to load it properly. :) --- .vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index a3b2bbb..bf71e9d 100644 --- a/.vimrc +++ b/.vimrc @@ -12,11 +12,9 @@ if exists('$TMUX') let &t_8b = "\033[48;2;%lu;%lu;%lum" endif -packadd! dracula set termguicolors set background=dark syntax enable -colorscheme dracula " Install vim-plug if not found if empty(glob('~/.vim/autoload/plug.vim')) @@ -72,3 +70,5 @@ Plug 'https://tildegit.org/sloum/gemini-vim-syntax' Plug 'dracula/vim', { 'as': 'dracula'} call plug#end() + +colorscheme dracula