add simple lua convenience wrapper

This allows for using more idiomatic calling styles in lua.
This commit is contained in:
Will Norris
2022-07-22 23:23:48 -07:00
parent 1fe54f212f
commit f152b97e0c

5
lua/onedark/init.lua Normal file
View File

@@ -0,0 +1,5 @@
return {
get_colors = vim.fn["onedark#GetColors"],
set_highlight = vim.fn["onedark#set_highlight"],
extend_highlight = vim.fn["onedark#set_highlight"],
}