From 453d95979e486fd6bf96feba8624cd4ea60f05cf Mon Sep 17 00:00:00 2001 From: Zbigniew Siciarz Date: Sat, 16 Oct 2021 19:08:05 +0200 Subject: [PATCH] Switch neovim color scheme to Nord as well. See https://github.com/arcticicestudio/nord/issues/157 Neovim features will be deprecated in nord.vim, but there will be a separate Nord scheme for neovim. --- nvim/lua/options.lua | 2 +- nvim/lua/plugins.lua | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/nvim/lua/options.lua b/nvim/lua/options.lua index d14cccb..6488fd4 100644 --- a/nvim/lua/options.lua +++ b/nvim/lua/options.lua @@ -33,7 +33,7 @@ opt.hidden = true -- enable 24-bit color opt.termguicolors = true -- enable Solarized -vim.cmd('colorscheme solarized') +vim.cmd('colorscheme nord') -- print margin opt.colorcolumn = '80' diff --git a/nvim/lua/plugins.lua b/nvim/lua/plugins.lua index 3df8470..24c0f72 100644 --- a/nvim/lua/plugins.lua +++ b/nvim/lua/plugins.lua @@ -27,7 +27,8 @@ return require('packer').startup(function() use 'vim-test/vim-test' use 'hrsh7th/nvim-compe' -- Color scheme - use 'ishan9299/nvim-solarized-lua' + -- see: https://github.com/arcticicestudio/nord/issues/157 + use 'arcticicestudio/nord-vim' -- Python plugins use 'raimon49/requirements.txt.vim' use {'psf/black', tag = '20.8b1' }