...More like Mariana Nord for VS Code. I love that color scheme.
Nord.nvim is meant to be a modern colorscheme written in lua for NeoVim that supports a lot of the new features added to NeoVim like built-in LSP and TreeSitter
-
Supported plugins, TBD:
-
Ability to change background on sidebar-like windows like Nvim-Tree, Packer, terminal etc.
- Neovim >= 0.5.0
Install via your favourite package manager:
" If you are using Vim-Plug
Plug 'miksa1987/nord.nvim'
-- If you are using Packer
use 'miksa1987/nord.nvim'
Enable the colorscheme:
"Vim-Script:
colorscheme nord
--Lua:
vim.cmd[[colorscheme nord]]
To enable the nord
theme for Lualine
, simply specify it in your lualine settings:
require('lualine').setup {
options = {
-- ... your lualine config
theme = 'nord'
-- ... your lualine config
}
}