shaunsingh / nord.nvim

Neovim theme based off of the Nord Color Palette, written in lua with tree sitter support
GNU General Public License v2.0
803 stars 107 forks source link

Extract named colors into separate file #97

Closed felipesere closed 2 years ago

felipesere commented 2 years ago

This remains backwards compatible while introducing a table of named colors that can be used outside of the plugin with

local nord = require("nord.named_colors")

vim.api.nvim_set_hl(0, "TypeHighlight", { fg = nord.yellow })

Closes #87