Switch terminal and font
This commit is contained in:
parent
2b77c2d461
commit
b551918273
9 changed files with 37 additions and 100 deletions
|
@ -8,8 +8,31 @@
|
|||
|
||||
config = lib.mkIf config.chvp.graphical.terminal.enable {
|
||||
home-manager.users.charlotte = { pkgs, ... }: {
|
||||
home.packages = [ pkgs.wezterm ];
|
||||
xdg.configFile."wezterm/wezterm.lua".source = ./wezterm.lua;
|
||||
home.packages = [ pkgs.foot ];
|
||||
programs.foot = {
|
||||
enable = true;
|
||||
server.enable = true;
|
||||
settings = {
|
||||
main = {
|
||||
font = "Hack:size=9";
|
||||
dpi-aware = "no";
|
||||
};
|
||||
scrollback.lines = 10000;
|
||||
cursor.blink = true;
|
||||
colors = {
|
||||
foreground = "000000";
|
||||
background = "ffffff";
|
||||
regular0 = "282828";
|
||||
regular1 = "a60000";
|
||||
regular2 = "005e00";
|
||||
regular3 = "813e00";
|
||||
regular4 = "0031a9";
|
||||
regular5 = "721045";
|
||||
regular6 = "00538b";
|
||||
regular7 = "f8f8f8";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,37 +0,0 @@
|
|||
local wezterm = require 'wezterm';
|
||||
|
||||
return {
|
||||
font = wezterm.font("Fira Code"),
|
||||
font_size = 9.0,
|
||||
colors = {
|
||||
foreground = "#000000",
|
||||
background = "#ffffff",
|
||||
cursor_bg = "#777777",
|
||||
cursor_fg = "#ffffff",
|
||||
cursor_border = "#777777",
|
||||
selection_bg = "#000000",
|
||||
selection_fg = "#ffffff",
|
||||
ansi = { "#282828", "#a60000", "#005e00", "#813e00", "#0031a9", "#721045", "#00538b", "#f8f8f8" },
|
||||
brights = { "#000000", "#972500", "#315b00", "#70480f", "#2544bb", "#8f0075", "#30517f", "#ffffff" },
|
||||
},
|
||||
enable_scroll_bar = false,
|
||||
audible_bell = "Disabled",
|
||||
check_for_updates = false,
|
||||
enable_tab_bar = false,
|
||||
cursor_blink_ease_in = "Constant",
|
||||
cursor_blink_ease_out = "Constant",
|
||||
default_cursor_style = "BlinkingBlock",
|
||||
unicode_version = 14,
|
||||
visual_bell = {
|
||||
fade_in_function = "EaseIn",
|
||||
fade_in_duration_ms = 150,
|
||||
fade_out_function = "EaseOut",
|
||||
fade_out_duration_ms = 150,
|
||||
},
|
||||
window_padding = {
|
||||
left = 0,
|
||||
right = 0,
|
||||
top = 0,
|
||||
bottom = 0,
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue