Change VIM to Nord

This commit is contained in:
c0de 2022-08-17 16:51:04 -05:00
parent 3459200947
commit 2aaa27281b
2 changed files with 7 additions and 3 deletions

View File

@ -1,8 +1,7 @@
" Syntax highlighting based on detected language " Syntax highlighting based on detected language
syntax on syntax on
" Iceberg theme - I also use this theme in VSCode colorscheme nord
colorscheme iceberg
" Default GUI Window Geometry " Default GUI Window Geometry
if has("gui_running") 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_enabled=1
let g:better_whitespace_ctermcolor='red' let g:better_whitespace_ctermcolor='red'
call plug#begin()
Plug 'arcticicestudio/nord-vim'
execute pathogen#infect() execute pathogen#infect()
filetype plugin indent on filetype plugin indent on

View File

@ -81,7 +81,6 @@ symlink "${DF_HOME}/.gitconfig" "${HOME}/.gitconfig"
symlink "${DF_HOME}/.gtkrc.mine" "${HOME}/.gtkrc.mine" symlink "${DF_HOME}/.gtkrc.mine" "${HOME}/.gtkrc.mine"
symlink "${DF_HOME}/.gtkrc-2.0" "${HOME}/.gtkrc-2.0" symlink "${DF_HOME}/.gtkrc-2.0" "${HOME}/.gtkrc-2.0"
symlink "${DF_HOME}/.tmux.conf" "${HOME}/.tmux.conf" 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}/.vimrc" "${HOME}/.vimrc"
symlink "${DF_HOME}/.zshrc" "${HOME}/.zshrc" 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..." echo "Installing VIM Pathogen..."
curl -LSs https://tpo.pe/pathogen.vim -o "${HOME}/.vim/autoload/pathogen.vim" 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..." echo "Installing VIM Sensible..."
git clone git://github.com/tpope/vim-sensible.git "${HOME}/.vim/bundle/vim-sensible" git clone git://github.com/tpope/vim-sensible.git "${HOME}/.vim/bundle/vim-sensible"