diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-10 21:38:56 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-10 21:38:56 +0100 |
commit | 777d71ee7f83f44f53eed3f876c3adca00ade22a (patch) | |
tree | b7b2e0c514024da15d52b645f8684b0dbb32363c /lua/no-clown-fiesta/dark/config.lua | |
parent | 0a6cfb9721f280c854487a11131935ccf5d9b3bc (diff) |
Remove dark folder
Diffstat (limited to 'lua/no-clown-fiesta/dark/config.lua')
-rw-r--r-- | lua/no-clown-fiesta/dark/config.lua | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/lua/no-clown-fiesta/dark/config.lua b/lua/no-clown-fiesta/dark/config.lua deleted file mode 100644 index ebac710..0000000 --- a/lua/no-clown-fiesta/dark/config.lua +++ /dev/null @@ -1,23 +0,0 @@ -local config - -vim = vim or { g = {}, o = {} } - -local function opt(key, default) - if vim.g[key] == nil then - return default - end - if vim.g[key] == 0 then - return false - end - return vim.g[key] -end - -config = { - transparent_background = opt("transparent_background", false), - italic_comments = opt("italic_keywords", true) and "italic" or "NONE", - italic_keywords = opt("italic_keywords", true) and "italic" or "NONE", - italic_functions = opt("italic_function", false) and "italic" or "NONE", - italic_variables = opt("italic_variables", true) and "italic" or "NONE", -} - -return config |