neovim -> neobones
This commit is contained in:
28
lua/zenbones/neobones/init.lua
Normal file
28
lua/zenbones/neobones/init.lua
Normal file
@@ -0,0 +1,28 @@
|
||||
local lush = require "lush"
|
||||
local util = require "zenbones.util"
|
||||
local hsluv = lush.hsluv
|
||||
|
||||
local base_name = util.bg_to_base_name()
|
||||
local p = require("zenbones.neobones.palette")[base_name]
|
||||
|
||||
local specs = require(base_name .. ".specs").generate(p, util.resolve_config(base_name))
|
||||
|
||||
-- extend specs using Lush
|
||||
if base_name == "zenbones" then
|
||||
return lush.extends({ specs }).with(function()
|
||||
return {
|
||||
helpHyperTextJump { fg = hsluv "#195174" }, -- --link-color
|
||||
helpOption { helpHyperTextJump },
|
||||
markdownUrl { helpHyperTextJump },
|
||||
}
|
||||
end)
|
||||
else
|
||||
return lush.extends({ specs }).with(function()
|
||||
return {
|
||||
FloatBorder { fg = hsluv "#203f57" }, -- --border-color
|
||||
helpHyperTextJump { fg = hsluv "#8ec77e" }, -- --link-color
|
||||
helpOption { helpHyperTextJump },
|
||||
markdownUrl { helpHyperTextJump },
|
||||
}
|
||||
end)
|
||||
end
|
||||
Reference in New Issue
Block a user