chore: format
This commit is contained in:
@@ -114,6 +114,7 @@ currently supported.
|
||||
- [Kitty](extras/kitty)
|
||||
- [Alacritty](extras/alacritty)
|
||||
- [WezTerm](extras/wezterm)
|
||||
- [Windows Terminal](extras/windows_terminal)
|
||||
- [Tmux](extras/tmux)
|
||||
|
||||
It's also possible to generate any color configuration files using shipwright,
|
||||
|
||||
@@ -21,4 +21,3 @@
|
||||
"brightCyan": "#00B4E0",
|
||||
"brightWhite": "#B3B692"
|
||||
}
|
||||
|
||||
|
||||
@@ -21,4 +21,3 @@
|
||||
"brightCyan": "#7BC2DF",
|
||||
"brightWhite": "#A8A48D"
|
||||
}
|
||||
|
||||
|
||||
@@ -21,4 +21,3 @@
|
||||
"brightCyan": "#2B747C",
|
||||
"brightWhite": "#415934"
|
||||
}
|
||||
|
||||
|
||||
@@ -21,4 +21,3 @@
|
||||
"brightCyan": "#6BCACB",
|
||||
"brightWhite": "#A8A8A8"
|
||||
}
|
||||
|
||||
|
||||
@@ -21,4 +21,3 @@
|
||||
"brightCyan": "#006F70",
|
||||
"brightWhite": "#777777"
|
||||
}
|
||||
|
||||
|
||||
@@ -21,4 +21,3 @@
|
||||
"brightCyan": "#2B747C",
|
||||
"brightWhite": "#5C5C5C"
|
||||
}
|
||||
|
||||
|
||||
@@ -21,4 +21,3 @@
|
||||
"brightCyan": "#65B8C1",
|
||||
"brightWhite": "#888F94"
|
||||
}
|
||||
|
||||
|
||||
@@ -21,4 +21,3 @@
|
||||
"brightCyan": "#2B747C",
|
||||
"brightWhite": "#4F5E68"
|
||||
}
|
||||
|
||||
|
||||
@@ -21,4 +21,3 @@
|
||||
"brightCyan": "#65B8C1",
|
||||
"brightWhite": "#C0AB86"
|
||||
}
|
||||
|
||||
|
||||
@@ -21,4 +21,3 @@
|
||||
"brightCyan": "#65B8C1",
|
||||
"brightWhite": "#8E8E8E"
|
||||
}
|
||||
|
||||
|
||||
@@ -21,4 +21,3 @@
|
||||
"brightCyan": "#2B747C",
|
||||
"brightWhite": "#5C5C5C"
|
||||
}
|
||||
|
||||
|
||||
@@ -20,24 +20,16 @@ local template = [[{
|
||||
"brightPurple": "$bright_magenta",
|
||||
"brightCyan": "$bright_cyan",
|
||||
"brightWhite": "$bright_white"
|
||||
}
|
||||
]]
|
||||
}]]
|
||||
|
||||
local helpers = require "shipwright.transform.helpers"
|
||||
|
||||
---@diagnostic disable: undefined-global
|
||||
-- selene: allow(undefined_variable)
|
||||
run(
|
||||
{ specs, p, term },
|
||||
transform.colorscheme_to_term_colors,
|
||||
function(colors)
|
||||
return vim.tbl_extend("keep", colors, { name = name })
|
||||
end,
|
||||
function(colors)
|
||||
local text = helpers.apply_template(template, colors)
|
||||
run({ specs, p, term }, transform.colorscheme_to_term_colors, function(colors)
|
||||
local values = vim.tbl_extend("keep", colors, { name = name })
|
||||
local text = helpers.apply_template(template, values)
|
||||
return { text }
|
||||
end,
|
||||
{ overwrite, string.format("extras/windows_terminal/%s.json", name) }
|
||||
)
|
||||
end, { overwrite, string.format("extras/windows_terminal/%s.json", name) })
|
||||
-- selene: deny(undefined_variable)
|
||||
---@diagnostic enable: undefined-global
|
||||
|
||||
Reference in New Issue
Block a user