minimal extui fuzzy finder for neovim

fix: set hls on UIEnter

set highlights when colorscheme is already set before the plugin is loaded.

Reviewed-on: https://github.com/comfysage/artio.nvim/pull/5
Co-authored-by: robin <comfysagedev@gmail.com>

authored by

phanium robinwobin.dev and committed by robinwobin.dev bc3616d7 c0cc4634

+1 -1
+1 -1
plugin/artio.lua
··· 6 6 7 7 local augroup = vim.api.nvim_create_augroup("artio:hl", {}) 8 8 9 - vim.api.nvim_create_autocmd("ColorScheme", { 9 + vim.api.nvim_create_autocmd({ "UIEnter", "ColorScheme" }, { 10 10 group = augroup, 11 11 callback = function() 12 12 local hi = function(name, opts)