From 9e8558fd8d9462cdbba0acd631abd00a5f7975a2 Mon Sep 17 00:00:00 2001 From: Nickiel12 <35903114+Nickiel12@users.noreply.github.com> Date: Mon, 2 Oct 2023 09:41:38 -0700 Subject: [PATCH] Create .wezterm.lua from work computer --- windows-files/.wezterm.lua | 49 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 windows-files/.wezterm.lua diff --git a/windows-files/.wezterm.lua b/windows-files/.wezterm.lua new file mode 100644 index 0000000..bfc8731 --- /dev/null +++ b/windows-files/.wezterm.lua @@ -0,0 +1,49 @@ +-- Put in $HOME directory + +-- A normal config version of my nix config for wezterm +local wezterm = require 'wezterm' +local config = {} + +-- Requires powershell 7, and dejavu sans mono +-- for starship prompt, see: https://starship.rs/guide/#%F0%9F%9A%80-installation and powershell installation +config.default_prog = { "C:\\Program Files\\PowerShell\\7\\pwsh.exe" } + +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 = true + +--config.color_scheme = 'SeeThroughBlack' + config.color_scheme = 'Catppuccin Latte' + +--config.window_background_opacity = 0 +--config.win32_system_backdrop = "Acrylic" + + +config.color_schemes = { + ['SeeThroughBlack'] = { + ansi = { + "#000000", "#E44B4B", "#00cd00", "#cdcd00", + "#0091f1", "#cd00cd", "#00cdcd", "#faebd7" + }, + brights = { + "#404040", "#ff4a4a", "#04b004", "#ffff7f", + "#48b3fb", "#ff00ff", "#73ffe6", "#ffffff" + }, + -- foreground = "#F4EFD6", + -- background = "#202020", + foreground = "black", + background = "#000000", + + cursor_bg = "#1C6CD4", + cursor_border = "1C6CE4" , + + selection_bg = "#8ED1FC", + selection_fg = "black", + } +} + +return config