From 3f1d74ba185c78f0d71bf39e86a950c9231e7079 Mon Sep 17 00:00:00 2001 From: iGor milhit Date: Wed, 13 May 2020 21:20:53 +0200 Subject: [PATCH] colorscheme: install nord theme and update config * Adds new plugin for nord colorscheme. * Updates colorscheme accordingly. * Updates vim-airline theme. Co-Authored-by: Igor Milhit --- init.vim | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/init.vim b/init.vim index 45e6e6d..8d07124 100644 --- a/init.vim +++ b/init.vim @@ -1,8 +1,3 @@ -" Syntax coloration and color theme -syntax enable -set background=light -colorscheme solarized - " Filetype detection filetype plugin on @@ -76,7 +71,7 @@ set clipboard+=unnamedplus " airline let g:airline_powerline_fonts = 1 let g:airline#extensions#wordcount#filetypes = 'pandoc\|text\|' "Add support when pandoc is activated -let g:airline_theme='solarized' +let g:airline_theme='nord' " let g:airline_section_x = '%{PencilMode()}' " vim-table-mode @@ -130,6 +125,7 @@ let g:isort_command = 'isort' " plugins (vim-plug) call plug#begin('~/.config/nvim/plugged') +Plug 'arcticicestudio/nord-vim' " Nord color scheme Plug 'tpope/vim-sensible' " default settings Plug 'vim-pandoc/vim-pandoc' " pandoc support Plug 'vim-pandoc/vim-pandoc-syntax' " markdown syntax support @@ -165,3 +161,8 @@ Plug 'stsewd/isort.nvim', { 'do': ':UpdateRemotePlugins' } call plug#end() call neomake#configure#automake('nrwi', 500) " autolint + +" Syntax coloration and color theme +syntax enable +set background=dark +colorscheme nord