diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-09-20 20:50:03 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-09-20 20:50:03 +0200 |
commit | c41627ea1d440f68d79d0d9ecd87574814ce1fae (patch) | |
tree | e21632c896238845f4f4460385a206070a9e2926 /.config/nvim/lua/coal/config.lua | |
parent | f832cfd694e98ce27f76cc5370b8daf9cc634b19 (diff) |
Update bg once again, cleaner dark
Diffstat (limited to '.config/nvim/lua/coal/config.lua')
-rw-r--r-- | .config/nvim/lua/coal/config.lua | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.config/nvim/lua/coal/config.lua b/.config/nvim/lua/coal/config.lua deleted file mode 100644 index ebac710..0000000 --- a/.config/nvim/lua/coal/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 |