-
Hey, so I want to edit some colors in the default color scheme. local wezterm = require("wezterm")
local custom = wezterm.color.get_builtin_schemes()["HorizonDark (Gogh)"]
custom.background = "#0d1117"
return {
color_schemes = {
["Github-Alpha"] = custom,
},
color_scheme = "Github-Alpha",
} Also, I added this in .wezterm.lua. ---
config.color_scheme = "Github-ALpha"
--- But it doesn't seem to work. What have I done wrong? |
Beta Was this translation helpful? Give feedback.
Answered by
K4R7IK
Jun 22, 2024
Replies: 1 comment
-
-- Colorscheme
local custom = wezterm.color.get_builtin_schemes()["HorizonDark (Gogh)"]
custom.background = "#0d1117"
config.color_schemes = {
["Alpha-Custom"] = custom,
}
config.color_scheme = "Alpha-Custom" Forgot to post the answer. Here is the code if any else faces this issue in future. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
K4R7IK
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Forgot to post the answer. Here is the code if any else faces this issue in future.