From 2aaa27281bfc17178bd5e73abde9cedbbddfe669 Mon Sep 17 00:00:00 2001 From: c0de Date: Wed, 17 Aug 2022 16:51:04 -0500 Subject: [PATCH] Change VIM to Nord --- home/.vimrc | 6 ++++-- install.sh | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/home/.vimrc b/home/.vimrc index 568dc8a..ebe98ea 100644 --- a/home/.vimrc +++ b/home/.vimrc @@ -1,8 +1,7 @@ " Syntax highlighting based on detected language syntax on -" Iceberg theme - I also use this theme in VSCode -colorscheme iceberg +colorscheme nord " Default GUI Window Geometry if has("gui_running") @@ -50,5 +49,8 @@ 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' + execute pathogen#infect() filetype plugin indent on diff --git a/install.sh b/install.sh index 8a8df9d..9bf9d7c 100755 --- a/install.sh +++ b/install.sh @@ -81,7 +81,6 @@ symlink "${DF_HOME}/.gitconfig" "${HOME}/.gitconfig" symlink "${DF_HOME}/.gtkrc.mine" "${HOME}/.gtkrc.mine" symlink "${DF_HOME}/.gtkrc-2.0" "${HOME}/.gtkrc-2.0" symlink "${DF_HOME}/.tmux.conf" "${HOME}/.tmux.conf" -symlink "${DF_HOME}/.tmux/iceberg.tmux.conf" "${HOME}/.tmux/iceberg.tmux.conf" symlink "${DF_HOME}/.vimrc" "${HOME}/.vimrc" symlink "${DF_HOME}/.zshrc" "${HOME}/.zshrc" @@ -128,6 +127,9 @@ 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 Sensible..." git clone git://github.com/tpope/vim-sensible.git "${HOME}/.vim/bundle/vim-sensible"