diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-29 17:19:06 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-29 17:19:06 +0200 |
commit | 6859908ddee41f7b0121f3c2e3ef2262875291ba (patch) | |
tree | 1108474a0c51bd299dba9b3e469b0c4af72c9aab /lua/no-clown-fiesta/settings.lua | |
parent | da502c2571b710791b29c82a77cbe577791b14df (diff) |
Refactoradd/config
Diffstat (limited to 'lua/no-clown-fiesta/settings.lua')
-rw-r--r-- | lua/no-clown-fiesta/settings.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/settings.lua b/lua/no-clown-fiesta/settings.lua new file mode 100644 index 0000000..e41380c --- /dev/null +++ b/lua/no-clown-fiesta/settings.lua @@ -0,0 +1,17 @@ +local M = {} +local palette = require "no-clown-fiesta.palette" + +local default = { + transparent_background = palette.bg, + comments = "NONE", + keywords = "NONE", + functions = "NONE", + variables = "NONE", + type = "NONE", +} + +function M.set(opts) + return vim.tbl_extend("force", default, opts) +end + +return M |