ark/users/patriot/config/wezterm/cfg.nix

13 lines
283 B
Nix
Raw Normal View History

2022-04-22 07:40:28 +03:00
{font, ...}: ''
local wezterm = require 'wezterm';
return {
font = wezterm.font("${font.name}"),
font_size = ${builtins.toJSON font.size},
2022-04-24 03:44:42 +03:00
color_scheme = "Grape",
default_cursor_style = "BlinkingBar",
enable_wayland = true,
enable_tab_bar = false
2022-04-22 07:40:28 +03:00
}
''