-
Notifications
You must be signed in to change notification settings - Fork 63
wezterm color scheme not apply #527
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Wezterm also has the |
why not combine ![]() My home-manager configuration: _: {
catppuccin = {
wezterm.apply = true;
enable = true;
flavor = "mocha";
accent = "peach";
};
programs.wezterm = {
enable = true;
enableZshIntegration = true;
# enableFishIntegration = true;
# enableNushellIntegration = true;
extraConfig = ''
local wezterm = require 'wezterm'
local config = {}
config.font = wezterm.font 'Maple Mono NF'
config.font_size = 19
config.window_decorations = "RESIZE"
config.enable_tab_bar = false
config.window_close_confirmation = 'NeverPrompt'
return config
'';
};
} |
Because the api is extremely weird. In your case its because of that which is why your noticing your error. This should be what your config looks like with extraConfig = ''
local wezterm = require 'wezterm'
config.font = wezterm.font 'Maple Mono NF'
config.font_size = 19
config.window_decorations = "RESIZE"
config.enable_tab_bar = false
config.window_close_confirmation = 'NeverPrompt'
return config
''; |
that weird, maybe we should switch to manual |
We do currently do that, see nix/modules/home-manager/wezterm.nix Line 19 in 2f52f9e
But we also apply the lua file since it adds other modifications. |
Here is my config:
The text was updated successfully, but these errors were encountered: