From 9d11eefc53441e1f5688545b4b827f7c8dd5090d Mon Sep 17 00:00:00 2001 From: seraphim <18ycm9tx@anonaddy.me> Date: Sun, 23 Aug 2026 19:31:22 +0700 Subject: reorganize directories, so everything in .config --- .config/nvim/lua/caelus/init.lua | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to '.config/nvim/lua/caelus') diff --git a/.config/nvim/lua/caelus/init.lua b/.config/nvim/lua/caelus/init.lua index dec0a41..2507bea 100644 --- a/.config/nvim/lua/caelus/init.lua +++ b/.config/nvim/lua/caelus/init.lua @@ -29,6 +29,15 @@ local colors = { } function M.colorscheme() + -- Prefer wallust-generated colors (auto-themed from the wallpaper). + local wallust = (os.getenv("HOME") or "") .. "/.cache/wallust/colors/wallust.lua" + if vim.loop.fs_stat(wallust) and pcall(dofile, wallust) then + if package.loaded['lualine'] then + require('lualine').setup({ options = { theme = 'auto' } }) + end + return + end + vim.cmd("highlight clear") vim.cmd("syntax reset") -- cgit v1.2.3