Create .wezterm.lua

Added a .lua configuration file for when I can't use nix, but can use wezterm
This commit is contained in:
Nickiel12 2023-05-23 10:44:58 -07:00 committed by GitHub
parent da0b6d524b
commit 8e8b8e2c6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

36
rsrcs/.wezterm.lua Normal file
View file

@ -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