refactor(nvim): Use highlight api

This commit is contained in:
Price Hiller 2022-03-06 22:37:35 -06:00
parent 9241ee7d34
commit f0734997c4

View File

@ -19,8 +19,6 @@ M.setup = function()
)
end
vim.cmd([[
hi SpecialKey guifg=#61AFEF
]])
vim.api.nvim_set_hl(0, 'SpecialKey', { fg = "#61AFEF" })
end
return M