Skip to content

Releases: Iron-E/nvim-highlite

v3.0.0

10 Mar 23:39
9406852
Compare
Choose a tag to compare

Added

  • feat(colors): LuaLS semantic tokens ab13b45

Changed

  • ref!: use nvim_set_hl-style definition dc31131

 

  • ref(colors): correct Lua keyword highlighting bd51d41
  • ref(colors): improve Go highlights e38f8e2
  • ref(colors): organize LSP highlights by syntax 8d545ae

 

  • perf(highlite): vim.envvim.loop.os_getenv 788ebdb

 

  • docs(highlite): highlight_terminal parameter 4d504a6
  • docs(README): how to use master-v3 9406852

 

  • chore(colors): alphabetize SCSS highlights 7c9bbcf
  • chore(gitignore): LuaLS project settings 6ae2e9d

v2.2.0

10 Mar 23:40
bc06ca1
Compare
Choose a tag to compare

Notice

v3.0.0 has been released. I will continue to update the second version, though your plugin manager will attempt to automatically upgrade you. To prevent this, add the following to your config:

--- lazy.vim
{'Iron-E/nvim-highlite',
  config = function()
    vim.opt.termguicolors = true -- optional
    vim.api.nvim_command 'colorscheme highlite'
  end,
  lazy = false,
  priority = 1000,
  version = '^2.0.0', -- ← this part
},

-- packer.nvim / other package managers
use {'Iron-E/nvim-highlite', 
  branch = 'master', -- ← the "branch" option will force you to stay on the v2 release
}

Added

  • feat(colors): LSP semantic tokens bc06ca1
  • feat(colors): LazyDir 9fa7cf1
  • feat(colors): better help highlight ab18169
  • feat(colors): i3config support 315c2f2
  • feat(colors): lazy.nvim buttons a8efad2
  • feat(colors): support lazy.nvim de2eda0

Changed

  • chore(gitignore): LuaLS project settings a85f60c
  • docs(README): lazy.nvim instructions 7d5e841
  • ref(colors): adjust lazy.nvim highlights 29c48ed
  • ref(colors): better groups for lazy.nvim dbd396e
  • ref(colors): improve :man highlighting b418dfd

Fixed

  • fix(colors): @text.uri linked to nonexistant highlight group 372a69c

v2.1.0

03 Jan 21:42
718f09f
Compare
Choose a tag to compare

What's new

Additions

  • feat(colors): 0.9 semantic LSP highlights in ab72f81
  • feat(highlight): barbar.nvim alternate buffer in 5688717
  • feat(colors): default for SymbolsOutlineConnector in 181c3c9

Fixes

  • fix(colors): cmp popup menu highlighting in 8895dc2
  • fix(colors): nvim-treesitter in #21

Other

  • ref(highlite): clean up diagnostics in 4489524

v2.0.3

11 Aug 15:11
80e52a1
Compare
Choose a tag to compare

v2.0.1

18 Apr 19:38
63c15fb
Compare
Choose a tag to compare

v2.0.1

This is primarily a performance-enhancement release, as the plugin has been retrofitted to use vim.api.nvim_set_hl which was introduced for general use in 0.7. As a result, however, the colorscheme now requires Neovim 0.7 or newer

v1.14.0

03 Jan 17:43
03f0100
Compare
Choose a tag to compare
perf(highlite): minimally filter data in `highlite.group`

v1.13.0

11 Nov 22:31
c0f6d68
Compare
Choose a tag to compare

Summary

This release removes a lot of redundancy in the colorscheme template, as well as provides support for many of the incoming breaking changes for Neovim 0.6.

Additions

  • Add FloatBorder
  • New vim.diagnostic highlight groups
  • Add nvim-cmp support
  • Add nvim-tree support

Changes

  • Fix typo (#17)
  • Set Normal background to NONE
  • Set TabeLineSel background to Normal background
  • Base other LSP/Lint plugin highlights on vim.diagnostic groups
  • Set BufferTabpages foreground to Normal background
  • Group gitsigns.nvim with gitgutter/etc

v1.12.0

14 Sep 02:27
c41f959
Compare
Choose a tag to compare

v1.12.0

Additions

  • Lua setup instructions
  • Example repos (#16)
  • Link to hex-to-256 color converter.
  • Highlights to markdown floating popups (e.g. LSP documentation)
  • man highlighting.
  • CmpDocumentationBorder highlights
  • packer.nvim highlights
  • Create update script (#13).
  • Setup upstream remote (#14).

Changes

  • Performance has been improved!
  • Switch from vim-plug to packer.nvim
  • Choose better 16-bit colors.
  • Make PmenuSel stand out more.
  • Make PmenuSbar differ from background.
  • TodoBgs no longer combined with existing highlight groups

v1.11.0

03 Aug 22:57
85c931f
Compare
Choose a tag to compare

Summary

This update brings many new defaults for plugins which have been released for 0.5+

Additions

  • Support for indent-blankline.nvim
  • Support for trouble.nvim
  • Support for todo-comments.nvim
  • Support for gitsigns.nvim

Changes

  • Alter CursorLineNr to not make it look like the CursorLine is not it.

v1.10.0

03 Aug 22:53
20ff07b
Compare
Choose a tag to compare

Summary

This release brings several improvements to the codebase.

Additions

  • Add Razor highlights

Changes

  • Remove all VimL
  • Remove bold from non-error LSP messages

Fixes

  • Fix #11
  • Remove quotes from coc.nvim highlight groups
  • Not all text pertaining to highlite being replaced by setup script