Bring over commits accidentally only on local_machine branch to main
This commit is contained in:
parent
07471f5d48
commit
332c883a48
11 changed files with 59 additions and 11 deletions
16
nvim/lua/colors.lua
Normal file
16
nvim/lua/colors.lua
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue