diff options
| author | Marc Vertes <mvertes@free.fr> | 2024-06-04 19:06:58 +0200 |
|---|---|---|
| committer | Marc Vertes <mvertes@free.fr> | 2024-06-04 19:06:58 +0200 |
| commit | 72b56e45d76f5370f7566b643ed97d631ca9e39c (patch) | |
| tree | 7a87150b86c4f662ab174f4954a19f762bbc7638 /.wezterm.lua | |
| parent | 72836bcffed62d9d3365344770c036e4e9d13381 (diff) | |
update
Diffstat (limited to '.wezterm.lua')
| -rw-r--r-- | .wezterm.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.wezterm.lua b/.wezterm.lua index 51c95e5..7ba6e31 100644 --- a/.wezterm.lua +++ b/.wezterm.lua @@ -1,12 +1,15 @@ local wezterm = require 'wezterm' +local act = wezterm.action local config = wezterm.config_builder() -config.color_scheme = 'GruvboxDarkHard' +config.color_scheme = 'GruvboxDarkHard' -- dark +-- config.color_scheme = 'Modus-Operandi' -- light + config.pane_focus_follows_mouse = true config.hide_tab_bar_if_only_one_tab = true config.colors = { - cursor_bg = "#d00000" + cursor_bg = "#d00000", } return config |
