Releases: Iron-E/nvim-highlite
Releases · Iron-E/nvim-highlite
v3.0.0
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.env
→vim.loop.os_getenv
788ebdb
v2.2.0
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
v2.0.3
Full Changelog: release/2.0.1...release/2.0.3
v2.0.1
v1.14.0
v1.13.0
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 toNONE
- Set
TabeLineSel
background toNormal
background - Base other LSP/Lint plugin highlights on
vim.diagnostic
groups - Set
BufferTabpages
foreground toNormal
background - Group
gitsigns.nvim
withgitgutter
/etc
v1.12.0
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
highlightspacker.nvim
highlights- Create update script (#13).
- Setup
upstream
remote (#14).
Changes
- Performance has been improved!
- Switch from
vim-plug
topacker.nvim
- Choose better 16-bit colors.
- Make
PmenuSel
stand out more. - Make
PmenuSbar
differ from background. TodoBg
s no longer combined with existing highlight groups
v1.11.0
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 theCursorLine
is not it.