Bring over commits accidentally only on local_machine branch to main

This commit is contained in:
Martin Larsson 2025-07-09 23:58:22 +02:00
parent 07471f5d48
commit 332c883a48
11 changed files with 59 additions and 11 deletions

16
nvim/lua/colors.lua Normal file
View file

@ -0,0 +1,16 @@
local has_generated = false
local colors = require("ayu.colors")
colors.generate(true)
local M = {}
function M.get()
if not has_generated then
colors.generate(true)
has_generated = true
end
return colors
end
return M