Skip to content

Commit

Permalink
Switch neovim color scheme to Nord as well.
Browse files Browse the repository at this point in the history
See nordtheme/nord#157

Neovim features will be deprecated in nord.vim, but there will be
a separate Nord scheme for neovim.
  • Loading branch information
zsiciarz committed Jan 25, 2022
1 parent 3a7cfb0 commit 2027417
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nvim/lua/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
3 changes: 2 additions & 1 deletion nvim/lua/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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' }
Expand Down

0 comments on commit 2027417

Please sign in to comment.