Various wezterm changes

This commit is contained in:
baduhai 2023-01-20 18:00:35 -03:00
parent 419356d24f
commit 85c2633370
3 changed files with 2 additions and 19 deletions

View file

@ -19,6 +19,7 @@
scrollbar = true;
tabstospaces = true;
tabsize = 2;
colorscheme = "cmc-16";
};
};
oh-my-posh = {

View file

@ -16,6 +16,7 @@
# Dotfiles that can't be managed via home-manager
".local/share/color-schemes/QogirLight.colors".source = "${inputs.dotfiles}/QogirLight.colors";
".local/share/color-schemes/Carl.colors".source = "${inputs.dotfiles}/Carl.colors";
".config/wezterm/wezterm.lua".source = "${inputs.dotfiles}/wezterm.lua";
".config/MangoHud/MangoHud.conf".source = "${inputs.dotfiles}/MangoHud/MangoHud.conf";
# Autostart programs
".config/autostart/org.kde.yakuake.desktop".source = config.lib.file.mkOutOfStoreSymlink "/var/run/current-system/sw/share/applications/org.kde.yakuake.desktop";

View file

@ -43,24 +43,5 @@ in
update_ms = 500;
};
};
wezterm = {
enable = true;
extraConfig = ''
local wezterm = require 'wezterm'
local SOLID_LEFT_ARROW = utf8.char(0xe0b2)
local SOLID_RIGHT_ARROW = utf8.char(0xe0b0)
return {
font_size = 11,
color_scheme = 'Atelier Cave (base16)',
hide_tab_bar_if_only_one_tab = true,
font = wezterm.font_with_fallback ({
"Hack Nerd Font",
"Noto Color Emoji",
}),
initial_cols = 108,
initial_rows = 32,
}
'';
};
};
}