From 25fdb8151747ae022e27b2230f07b65c2e62e865 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Wed, 9 Oct 2024 08:07:47 +0100 Subject: [PATCH] feat: add wezterm config --- files/wezterm/wezterm.lua | 24 ++++++++++++++++++++++++ hosts/falcon.json | 1 + hosts/sparrow.json | 1 + 3 files changed, 26 insertions(+) create mode 100644 files/wezterm/wezterm.lua diff --git a/files/wezterm/wezterm.lua b/files/wezterm/wezterm.lua new file mode 100644 index 0000000..a25af11 --- /dev/null +++ b/files/wezterm/wezterm.lua @@ -0,0 +1,24 @@ +-- Pull in the wezterm API +local wezterm = require 'wezterm' + +-- This will hold the configuration. +local config = wezterm.config_builder() + +-- This is where you actually apply your config choices +config = { + color_scheme = 'Tokyo Night', + cursor_thickness = 1.75, + default_cursor_style = 'SteadyBar', + enable_tab_bar = false, + font = wezterm.font 'SauceCodePro Nerd Font Mono', + font_size = 10.50, + scrollback_lines = 10000, + window_padding = { + left = 0, + right = 0, + top = 0, + bottom = 0, + }, +} + +return config diff --git a/hosts/falcon.json b/hosts/falcon.json index 4166702..f62418b 100644 --- a/hosts/falcon.json +++ b/hosts/falcon.json @@ -192,6 +192,7 @@ "tmux", "user-dirs.dirs", "user-dirs.locale", + "wezterm", "zk" ] } diff --git a/hosts/sparrow.json b/hosts/sparrow.json index 809fe4d..e86a87d 100644 --- a/hosts/sparrow.json +++ b/hosts/sparrow.json @@ -66,6 +66,7 @@ "logrotate", "river", "tmux", + "wezterm", "user-dirs.dirs", "user-dirs.locale" ]