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' }