I was looking into how to configure the plugin under lua and could not see anything.
Something along the line of:
local status_ok, semantic = pcall(require, "semantic")
if not status_ok then
return
end
semantic.setup {
}
I have a working keymap:
keymap("n", "<leader>sh", "<cmd>SemanticHighlightToggle<CR>", opts)
But I would like to enable it by default, without having to toggle it.
I was looking into how to configure the plugin under lua and could not see anything.
Something along the line of:
I have a working keymap:
keymap("n", "<leader>sh", "<cmd>SemanticHighlightToggle<CR>", opts)But I would like to enable it by default, without having to toggle it.