From d7b17edc61e7fa0d010c846bc65b95eb511db908 Mon Sep 17 00:00:00 2001 From: c0de Date: Wed, 17 Aug 2022 17:11:20 -0500 Subject: [PATCH] Fix Nord theme for vim --- home/.vimrc | 5 +---- install.sh | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/home/.vimrc b/home/.vimrc index ebe98ea..074b467 100644 --- a/home/.vimrc +++ b/home/.vimrc @@ -1,8 +1,6 @@ " Syntax highlighting based on detected language syntax on -colorscheme nord - " Default GUI Window Geometry if has("gui_running") " Preferred window size @@ -49,8 +47,7 @@ let g:go_auto_type_info = 1 let g:better_whitespace_enabled=1 let g:better_whitespace_ctermcolor='red' -call plug#begin() -Plug 'arcticicestudio/nord-vim' +colorscheme nord execute pathogen#infect() filetype plugin indent on diff --git a/install.sh b/install.sh index baa5a0e..1499efd 100755 --- a/install.sh +++ b/install.sh @@ -127,8 +127,8 @@ CHSH='no' RUNZSH='no' KEEP_ZSHRC='yes' sh -c "$(curl -fsSL https://raw.github.co echo "Installing VIM Pathogen..." curl -LSs https://tpo.pe/pathogen.vim -o "${HOME}/.vim/autoload/pathogen.vim" -echo "Installing VIM Plug" -curl -fLo "${HOME}/.vim/autoload/plug.vim" --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim +echo "Installing VIM Nord theme" +curl -fLo "${HOME}/.vim/colors/nord.vim" --create-dirs https://raw.githubusercontent.com/arcticicestudio/nord-vim/main/colors/nord.vim echo "Installing VIM Sensible..." git clone git://github.com/tpope/vim-sensible.git "${HOME}/.vim/bundle/vim-sensible"