diff options
| author | Trey Bastian <hello@treybastian.com> | 2026-06-25 18:36:03 +0100 |
|---|---|---|
| committer | Trey Bastian <hello@treybastian.com> | 2026-06-25 18:36:03 +0100 |
| commit | bfd580fb2f74792004aabf069efd33ea3f522ed2 (patch) | |
| tree | 97a7e374336a54807bc848299e4276ffcd790d3c /lua | |
| parent | ff7e178e4e3fe0c3cb9caeb25be01b72b92ecdc8 (diff) | |
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/config/opts.lua | 3 | ||||
| -rw-r--r-- | lua/config/plugins.lua | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/lua/config/opts.lua b/lua/config/opts.lua index 5f3cde1..1e951e4 100644 --- a/lua/config/opts.lua +++ b/lua/config/opts.lua @@ -21,6 +21,3 @@ o.colorcolumn = "80" o.pumheight = 15 o.updatetime = 50 o.scrolloff = 8 - --- remove bg -vim.api.nvim_set_hl(0, "Normal", { bg = "none" }) diff --git a/lua/config/plugins.lua b/lua/config/plugins.lua index 030b580..5dc6f97 100644 --- a/lua/config/plugins.lua +++ b/lua/config/plugins.lua @@ -20,3 +20,9 @@ require("blink.cmp").setup({ }) vim.cmd([[colorscheme apple]]) + +-- color overrides +local palette = require("apple.palette") +local util = require("apple.util") +local colors = util.is_dark() and palette.dark or palette.light +vim.api.nvim_set_hl(0, "StatusLine", { bg = colors.bg }) |
