From f5932c6b731a39aecfb55c1bd7d13ca84462bf7f Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Thu, 17 Oct 2024 16:05:32 +0100 Subject: [PATCH] [2024-10-17] tmux.conf and wezterm.lua --- tmux/tmux.conf | 4 ++++ wezterm/wezterm.lua | 12 ++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 tmux/tmux.conf create mode 100644 wezterm/wezterm.lua diff --git a/tmux/tmux.conf b/tmux/tmux.conf new file mode 100644 index 0000000..d63ced6 --- /dev/null +++ b/tmux/tmux.conf @@ -0,0 +1,4 @@ +set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm' # undercurl support +set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m' # underscore colours - needs tmux-3.0 + +set -g default-terminal 'wezterm' diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua new file mode 100644 index 0000000..66b7966 --- /dev/null +++ b/wezterm/wezterm.lua @@ -0,0 +1,12 @@ +local wezterm = require 'wezterm' +local config = {} + +config.color_scheme = 'GruvboxDark' +config.font = wezterm.font 'JetBrains Mono' +config.font_size = 13.0 +config.hide_tab_bar_if_only_one_tab = true +config.window_decorations = "RESIZE" +config.window_background_opacity = 1.0 +config.default_cursor_style = 'BlinkingBar' + +return config