Last active
September 23, 2024 03:52
-
-
Save Sama-004/e6d51c1c81cfc607ddb3e3c2c38d9d53 to your computer and use it in GitHub Desktop.
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 | |
local config = { | |
font = wezterm.font_with_fallback({ | |
"JetBrains Mono NL", | |
"Noto Color Emoji", | |
"Symbols Nerd Font Mono", | |
}), | |
-- color_scheme = "Catppuccin Mocha", | |
color_scheme = "Tokyo Night", | |
warn_about_missing_glyphs = false, | |
font_size = 12, | |
enable_tab_bar = false, | |
-- leader key | |
window_padding = { | |
left = 0, | |
right = 0, | |
top = 0, | |
bottom = 0, | |
}, | |
} | |
return config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment