aboutsummaryrefslogtreecommitdiff
path: root/lua/config
diff options
context:
space:
mode:
authorTrey Bastian <hello@treybastian.com>2025-11-07 16:56:52 +0000
committerTrey Bastian <hello@treybastian.com>2025-11-07 16:56:52 +0000
commit94c63d03d9d163f839039cde707f89977e583534 (patch)
treed6d6714e74c462c8e8984c08c73b6a4178c908d0 /lua/config
parent78d492d7d406335d06b89e8050b5a7e964db0b8f (diff)
remove background from colors
Diffstat (limited to 'lua/config')
-rw-r--r--lua/config/opts.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/config/opts.lua b/lua/config/opts.lua
index 1e951e4..5f3cde1 100644
--- a/lua/config/opts.lua
+++ b/lua/config/opts.lua
@@ -21,3 +21,6 @@ o.colorcolumn = "80"
o.pumheight = 15
o.updatetime = 50
o.scrolloff = 8
+
+-- remove bg
+vim.api.nvim_set_hl(0, "Normal", { bg = "none" })