Skip to content

Instantly share code, notes, and snippets.

@eodomo
Created February 1, 2025 18:16
Show Gist options
  • Save eodomo/429a19b79a53cacddfbeccefb6a11559 to your computer and use it in GitHub Desktop.
Save eodomo/429a19b79a53cacddfbeccefb6a11559 to your computer and use it in GitHub Desktop.
WezTerm config
-- 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