mirror of https://github.com/sgoudham/nvim.git
feat: allow remaps of both the colorscheme and the hi groups
parent
498db617ae
commit
65aef85685
@ -0,0 +1,22 @@
|
||||
local M = {}
|
||||
|
||||
local cs_remaps -- colorscheme
|
||||
local hig_remaps -- highlight groups
|
||||
|
||||
function M.get_cs_remaps()
|
||||
return cs_remaps
|
||||
end
|
||||
|
||||
function M.set_cs_remaps(val)
|
||||
cs_remaps = val
|
||||
end
|
||||
|
||||
function M.get_hig_remaps()
|
||||
return hig_remaps
|
||||
end
|
||||
|
||||
function M.set_hig_remaps(val)
|
||||
hig_remaps = val
|
||||
end
|
||||
|
||||
return M
|
Loading…
Reference in New Issue