Created
February 1, 2025 18:16
-
-
Save eodomo/429a19b79a53cacddfbeccefb6a11559 to your computer and use it in GitHub Desktop.
WezTerm config
This file contains 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
-- Pull in the wezterm API | |
local wezterm = require("wezterm") | |
-- This will hold the configuration. | |
local config = wezterm.config_builder() | |
-- Specify configuration | |
config.color_scheme = "catppuccin-mocha" | |
config.default_prog = { "pwsh", "-NoLogo" } | |
config.launch_menu = { | |
{ | |
label = "PowerShell", | |
args = { "pwsh", "-NoLogo" }, | |
}, | |
{ | |
args = { "cmd" }, | |
}, | |
{ args = { "nvim" } }, | |
} | |
config.font = wezterm.font("ComicCodeLigaturse Nerd Font") | |
-- and finally, return the configuration to wezterm | |
return config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment