Skip to content

Instantly share code, notes, and snippets.

@afonsolage
Created December 2, 2023 17:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afonsolage/bcc2f44b51603471b450a1278b75b407 to your computer and use it in GitHub Desktop.
Save afonsolage/bcc2f44b51603471b450a1278b75b407 to your computer and use it in GitHub Desktop.
wezterm.lua
local wezterm = require 'wezterm'
local config = {}
if wezterm.config_builder then
config = wezterm.config_builder()
end
config.color_scheme = 'Dracula (Official)'
config.window_frame = {
font = wezterm.font { family = 'FiraCode Nerd Font'}
}
config.tab_bar_at_bottom = true
config.use_fancy_tab_bar = false
config.default_prog = { 'nu.exe'}
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment