Last active
January 31, 2026 21:03
-
-
Save pavel-kirienko/327d27dbf9b78082291a89a171641103 to your computer and use it in GitHub Desktop.
WezTerm config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local wezterm = require 'wezterm' | |
| local act = wezterm.action | |
| -- https://wezterm.org/config/lua/config/ | |
| return { | |
| font = wezterm.font("MesloLGS NF"), | |
| font_size = 10, | |
| color_scheme = "deep", | |
| colors = { | |
| background = "black", | |
| }, | |
| enable_scroll_bar = true, | |
| scrollback_lines = 100000, | |
| hide_tab_bar_if_only_one_tab = true, | |
| tab_bar_at_bottom = true, | |
| initial_rows = 40, | |
| initial_cols = 120, | |
| adjust_window_size_when_changing_font_size = false, | |
| animation_fps = 1, | |
| default_cursor_style = 'BlinkingBlock', | |
| cursor_blink_rate = 500, | |
| cursor_blink_ease_in = 'Constant', | |
| cursor_blink_ease_out = 'Constant', | |
| keys = { | |
| { | |
| key = 'K', | |
| mods = 'CTRL|SHIFT', | |
| action = act.ClearScrollback 'ScrollbackAndViewport', | |
| } | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment