1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-21 18:12:23 +03:00

Fixed minor typo in the example from `get_default_colors.md

This commit is contained in:
Pedro 2024-11-14 15:37:23 +01:00 committed by Wez Furlong
parent 51c794ac50
commit 979df78269

View File

@ -14,8 +14,8 @@ other is one of the many built-in schemes:
```lua
local wezterm = require 'wezterm'
local gruvbox = wezterm.color.get_builtin_schemes()['Gruvbox Light']
gruvbox.background = 'red'
local my_gruvbox = wezterm.color.get_builtin_schemes()['Gruvbox Light']
my_gruvbox.background = 'red'
local my_default = wezterm.color.get_default_colors()
my_default.background = 'red'