Skip to content

Latest commit

 

History

History
77 lines (58 loc) · 2.28 KB

README.md

File metadata and controls

77 lines (58 loc) · 2.28 KB

miksa1987/nord.nvim

Neovim theme based off of the shaunsingh's great nord.nvim

...More like Mariana Nord for VS Code. I love that color scheme.

screenshot-js

Features

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

⚡️ Requirements

  • Neovim >= 0.5.0

🌙 Installation

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'

🌓 Usage

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