Add theme-set/switching logic, and minor nvim, tmux, obsidian changes
This commit is contained in:
14
src_files/.config/nvim/lua/theme_transparency.lua
Normal file
14
src_files/.config/nvim/lua/theme_transparency.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
local hl_properties = {
|
||||
"Normal", "NormalFloat", "FloatBorder", "Pmenu", "Terminal", "EndOfBuffer",
|
||||
"FoldColumn", "Folded", "SignColumn", "NormalNC", "WhichKeyFloat", "TelescopeBorder",
|
||||
"TelescopeNormal", "TelescopePromptBorder", "TelescopePromptTitle", "NotifyINFOBody",
|
||||
"NotifyERRORBody", "NotifyWARNBody", "NotifyTRACEBody", "NotifyDEBUGBody",
|
||||
"NotifyINFOTitle", "NotifyERRORTitle", "NotifyWARNTitle", "NotifyTRACETitle",
|
||||
"NotifyDEBUGTitle", "NotifyINFOBorder", "NotifyERRORBorder", "NotifyWARNBorder",
|
||||
"NotifyTRACEBorder", "NotifyDEBUGBorder",
|
||||
}
|
||||
|
||||
for _, v in ipairs(hl_properties) do
|
||||
vim.api.nvim_set_hl(0, v, { bg = "none" })
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user