mirror of
https://github.com/boxpositron/absolute-vim.git
synced 2026-02-28 03:30:36 +00:00
style(colorscheme.lua): add missing newline after SetupWindowPreferences function
feat(colorscheme.lua): add setting for NormalNC highlight group to maintain consistency perf(colorscheme.lua): improve logging by using vim.notify instead of console.log
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
local function SetupWindowPreferences()
|
||||
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
||||
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
||||
vim.api.nvim_set_hl(0, "NormalNC", { bg = "none" })
|
||||
end
|
||||
|
||||
|
||||
@@ -34,7 +35,7 @@ local function SyncWezTerm()
|
||||
assert(file)
|
||||
file:write(colorscheme)
|
||||
file:close()
|
||||
-- vim.notify("Setting WezTerm color scheme to " .. colorscheme, vim.log.levels.INFO)
|
||||
vim.notify("Setting WezTerm color scheme to " .. colorscheme, vim.log.levels.INFO)
|
||||
end,
|
||||
})
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user