All Projects → shaunsingh → nord.nvim

shaunsingh / nord.nvim

Licence: GPL-2.0 license
Neovim theme based off of the Nord Color Palette, written in lua with tree sitter support

Programming Languages

lua
6591 projects
Vim Script
2826 projects

Projects that are alternatives of or similar to nord.nvim

blossom.vim
a simple pinkish vim colorscheme designed for cursive italics
Stars: ✭ 18 (-95.63%)
Mutual labels:  colorscheme, nvim
Darcula
A Vim color scheme reproduction of the official JetBrains IDE Darcula theme
Stars: ✭ 158 (-61.65%)
Mutual labels:  colorscheme, nvim
Nord Vim
An arctic, north-bluish clean and elegant Vim theme.
Stars: ✭ 1,987 (+382.28%)
Mutual labels:  colorscheme, nord
Nord Xcode
An arctic, north-bluish clean and elegant Xcode color theme.
Stars: ✭ 63 (-84.71%)
Mutual labels:  colorscheme, nord
vim-lighthaus
A Lighthaus theme for (n)vim, vim-airline and lightline
Stars: ✭ 33 (-91.99%)
Mutual labels:  colorscheme, nvim
Nord Terminator
An arctic, north-bluish clean and elegant Terminator color theme.
Stars: ✭ 78 (-81.07%)
Mutual labels:  colorscheme, nord
Purify
🌈 Clean & vibrant color schemes for Vim, Terminals...
Stars: ✭ 142 (-65.53%)
Mutual labels:  colorscheme, nvim
Nord Visual Studio Code
An arctic, north-bluish clean and elegant Visual Studio Code theme.
Stars: ✭ 749 (+81.8%)
Mutual labels:  colorscheme, nord
substrata.nvim
A cold, dark color scheme for Neovim
Stars: ✭ 89 (-78.4%)
Mutual labels:  colorscheme, nvim
nord-notepadplusplus
An arctic, north-bluish clean and elegant Notepad++ theme.
Stars: ✭ 112 (-72.82%)
Mutual labels:  colorscheme, nord
Swatch.vim
work with hex color codes and make your own vim colorschemes easily and quickly
Stars: ✭ 57 (-86.17%)
Mutual labels:  colorscheme, nvim
nightfox.nvim
🦊A highly customizable theme for vim and neovim with support for lsp, treesitter and a variety of plugins.
Stars: ✭ 1,489 (+261.41%)
Mutual labels:  colorscheme, nvim
Nord Konsole
An arctic, north-bluish clean and elegant Konsole color scheme.
Stars: ✭ 56 (-86.41%)
Mutual labels:  colorscheme, nord
Nord Termite
An arctic, north-bluish clean and elegant Termite color theme.
Stars: ✭ 104 (-74.76%)
Mutual labels:  colorscheme, nord
Nord Guake
An arctic, north-bluish clean and elegant Guake color theme.
Stars: ✭ 20 (-95.15%)
Mutual labels:  colorscheme, nord
Nord Xfce Terminal
An arctic, north-bluish clean and elegant Xfce Terminal color theme.
Stars: ✭ 136 (-66.99%)
Mutual labels:  colorscheme, nord
Nord Tmux
An arctic, north-bluish clean and elegant tmux color theme.
Stars: ✭ 567 (+37.62%)
Mutual labels:  colorscheme, nord
Nord Iterm2
An arctic, north-bluish clean and elegant iTerm2 color scheme.
Stars: ✭ 651 (+58.01%)
Mutual labels:  colorscheme, nord
vscode.nvim
Neovim/Vim color scheme inspired by Dark+ and Light+ theme in Visual Studio Code
Stars: ✭ 362 (-12.14%)
Mutual labels:  colorscheme, nvim
angr.vim
A pleasant, mild, dark (n)vim theme.
Stars: ✭ 53 (-87.14%)
Mutual labels:  colorscheme, nvim

shaunsingh/nord.nvim

Neovim theme based off of the Nord Color Palette.

118406380-d78ad580-b649-11eb-945c-5988fa717f39

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 'shaunsingh/nord.nvim'
-- If you are using Packer
use 'shaunsingh/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
  }
}

⚙️ Configuration

Option Default Description
nord_contrast false Make sidebars and popup menus like nvim-tree and telescope have a different background
nord_borders false Enable the border between verticaly split windows visable
nord_disable_background false Disable the setting of background color so that NeoVim can use your terminal background
nord_cursorline_transparent false Set the cursorline transparent/visible
nord_enable_sidebar_background false Re-enables the background of the sidebar if you disabled the background of everything
nord_italic true enables/disables italics
nord_uniform_diff_background false enables/disables colorful backgrounds when used in diff mode
-- Example config in lua
vim.g.nord_contrast = true
vim.g.nord_borders = false
vim.g.nord_disable_background = false
vim.g.nord_italic = false
vim.g.nord_uniform_diff_background = true

-- Load the colorscheme
require('nord').set()
" Example config in Vim-Script
let g:nord_contrast = v:true
let g:nord_borders = v:false
let g:nord_disable_background = v:false
let g:nord_italic = v:false
let g:nord_uniform_diff_background = v:true

" Load the colorscheme
colorscheme nord
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].