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

Rewrite: Use nvim_set_hl #69

Closed shaunsingh closed 2 years ago

shaunsingh commented 2 years ago

You might have noticed the lack of commits in the past month or so. I felt the code for this theme is needlessly complicated and wanted to clean it up a bit. Here I've removed all of the vim script in this project, using the new vim.api.nvim_set_hl to set highlights.

Limitations:

  1. Options aren't implemented yet (e.g. italic, contrast, cursor line)
  2. Some highlights don't properly work (not sure why)
  3. Lualine integration isn't present yet

Current state:

image
shaunsingh commented 2 years ago

Its clear that the api isn't ready yet. I'll close the PR and continue to improve on the old one for now