feat: added colorscheme names for styles

This commit is contained in:
Folke Lemaitre
2022-09-05 16:09:28 +02:00
parent dba4e35903
commit a3b558b552
8 changed files with 15 additions and 14 deletions

View File

@@ -1,6 +1,3 @@
-- shim vim for kitty and other generators
vim = vim or { g = {}, o = {} }
local M = {}
---@class Config
@@ -32,6 +29,10 @@ function M.setup(options)
M.options = vim.tbl_deep_extend("force", {}, defaults, options or {})
end
function M.extend(options)
M.options = vim.tbl_deep_extend("force", {}, M.options or defaults, options or {})
end
M.setup()
return M