From 8e8b8e2c6c0d1f731a77efebdbbb890cdf6309bc Mon Sep 17 00:00:00 2001 From: Nickiel12 <35903114+Nickiel12@users.noreply.github.com> Date: Tue, 23 May 2023 10:44:58 -0700 Subject: [PATCH] Create .wezterm.lua Added a .lua configuration file for when I can't use nix, but can use wezterm --- rsrcs/.wezterm.lua | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 rsrcs/.wezterm.lua diff --git a/rsrcs/.wezterm.lua b/rsrcs/.wezterm.lua new file mode 100644 index 0000000..191de3b --- /dev/null +++ b/rsrcs/.wezterm.lua @@ -0,0 +1,36 @@ +-- A normal config version of my nix config for wezterm +local wezterm = require 'wezterm' +local config = {} + +config.window_background_opacity = 0.8 +config.font = wezterm.font_with_fallback { + 'DejaVu Sans Mono', + 'DejaVuSansMono-Nerd-Font', + } +config.font_size = 11.0 +config.hide_tab_bar_if_only_one_tab = false + +config.color_scheme = 'SeeThroughBlack' + +config.color_schemes = { + ['SeeThroughBlack'] = { + ansi = { + "#000000", "#E44B4B", "#00cd00", "#cdcd00", + "#0091f1", "#cd00cd", "#00cdcd", "#faebd7" + }, + brights = { + "#404040", "#ff0000", "#00ff00", "#ffff00", + "#48b3fb", "#ff00ff", "#00ffff", "#ffffff" + }, + foreground = "#F4EFD6", + background = "#202020", + + cursor_bg = "#2CCCE4", + cursor_border = "#2CCCE4" , + + selection_bg = "#8ED1FC", + selection_fg = "black", + } +} + +return config