Created
January 6, 2026 22:29
-
-
Save 0bvim/78a2fb4b63a3b78a06df94e3d2d45a8c to your computer and use it in GitHub Desktop.
My wezterm dot file
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 config = wezterm.config_builder() | |
| config.font = wezterm.font("MesloLGS Nerd Font Mono") | |
| config.font_size = 19 | |
| -- remove upper tab (no window border) | |
| config.enable_tab_bar = false | |
| -- remove wezterm tabs | |
| config.window_decorations = "RESIZE" | |
| config.window_background_opacity = 0.8 | |
| config.macos_window_background_blur = 42 | |
| config.send_composed_key_when_left_alt_is_pressed = false | |
| -- my coolnight colorscheme: | |
| config.colors = { | |
| foreground = "#CBE0F0", | |
| background = "#011423", | |
| cursor_bg = "#47FF9C", | |
| cursor_border = "#47FF9C", | |
| cursor_fg = "#011423", | |
| selection_bg = "#033259", | |
| selection_fg = "#CBE0F0", | |
| ansi = { "#214969", "#E52E2E", "#44FFB1", "#FFE073", "#0FC5ED", "#a277ff", "#24EAF7", "#24EAF7" }, | |
| brights = { "#214969", "#E52E2E", "#44FFB1", "#FFE073", "#A277FF", "#a277ff", "#24EAF7", "#24EAF7" }, | |
| } | |
| return config | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment