aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-10-30 22:33:05 +0200
committersrdusr <trevorgray@srdusr.com>2023-10-30 22:33:05 +0200
commit27bedbe26320276aef08a61797a44198cd3eeae9 (patch)
tree65de8cfc793f3edcc30820d1161905f774363a3c
parent05b8edc37b99fcbb3c9fb1e30182b3bd6b18bfa1 (diff)
downloaddotfiles-27bedbe26320276aef08a61797a44198cd3eeae9.tar.gz
dotfiles-27bedbe26320276aef08a61797a44198cd3eeae9.zip
Bold brightens ansi colors = true
-rw-r--r--.config/wezterm/wezterm.lua12
1 files changed, 3 insertions, 9 deletions
diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua
index 20e7490..8a371a6 100644
--- a/.config/wezterm/wezterm.lua
+++ b/.config/wezterm/wezterm.lua
@@ -139,22 +139,16 @@ return {
action = wezterm.action_callback(function(window, pane)
local has_selection = window:get_selection_text_for_pane(pane) ~= ""
if has_selection then
- window:perform_action(
- wezterm.action({ CopyTo = "ClipboardAndPrimarySelection" }),
- pane
- )
+ window:perform_action(wezterm.action({ CopyTo = "ClipboardAndPrimarySelection" }), pane)
window:perform_action("ClearSelection", pane)
else
- window:perform_action(
- wezterm.action({ SendKey = { key = "c", mods = "CTRL" } }),
- pane
- )
+ window:perform_action(wezterm.action({ SendKey = { key = "c", mods = "CTRL" } }), pane)
end
end),
},
},
-- Aesthetic Night Colorscheme
- --bold_brightens_ansi_colors = true,
+ bold_brightens_ansi_colors = true,
-- Padding
window_padding = {
left = 5,