switch to wezterm

This commit is contained in:
William Ball 2024-08-13 15:23:30 -07:00
parent c27e3e5d61
commit 70c8066d3f
2 changed files with 16 additions and 1 deletions

View file

@ -11,7 +11,7 @@ set $down j
set $up k
set $right l
# Your preferred terminal emulator
set $term kitty
set $term wezterm
set $browser firefox
set $emacs "emacsclient --create-frame --alternate-editor='emacs'"
# Your preferred application launcher

View file

@ -0,0 +1,15 @@
local wezterm = require 'wezterm'
local config = wezterm.config_builder()
config.color_scheme = 'Catppuccin Mocha'
config.font = wezterm.font('Iosevka Nerd Font Mono')
config.font_size = 15.0
config.default_cursor_style = 'SteadyBar'
config.hide_tab_bar_if_only_one_tab = true
config.use_fancy_tab_bar = false
config.tab_bar_at_bottom = true
return config