1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 21:32:13 +03:00
wezterm/docs
Wez Furlong d9f84da6ec fonts: fix second parameter of wezterm.font
The following configuration now works as intended:

```lua
local wezterm = require 'wezterm';
return {
  -- font = wezterm.font('JetBrains Mono'),
  font_rules = {
    {
      italic = false,
      intensity = "Normal",
      font = wezterm.font("JetBrains Mono"),
    },
    {
      italic = true,
      font = wezterm.font("JetBrains Mono", {italic=true}),
    },
    {
      intensity = "Bold",
      font = wezterm.font("JetBrains Mono", {bold=true}),
    },
    {
      italic = true,
      intensity = "Bold",
      font = wezterm.font("JetBrains Mono", {bold=true, italic=true}),
    }
  },
}
```
2020-06-16 08:27:35 -07:00
..
config docs: a couple of tweaks 2020-06-05 08:19:23 -07:00
install docs: add note about brew install --HEAD wezterm 2020-06-11 21:05:55 -07:00
screenshots add launch_menu section to the configuration 2020-04-11 17:31:55 -07:00
_config.yml docs: switch to the "Hacker" theme which is darker 2019-12-18 09:25:36 -08:00
book.toml default to darker styling 2019-12-29 22:05:49 -08:00
changelog.markdown fonts: fix second parameter of wezterm.font 2020-06-16 08:27:35 -07:00
copymode.markdown docs: a couple of tweaks 2020-06-05 08:19:23 -07:00
custom.css style download buttons a bit better 2019-12-29 21:39:23 -08:00
faq.markdown docs: update for lua configuration syntax 2020-04-06 16:32:16 -07:00
features.markdown docs: tweak feature page 2020-06-13 10:50:02 -07:00
help.markdown Add link to the Matrix/Riot room 2020-01-26 12:02:43 -08:00
hyperlinks.markdown docs: update for lua configuration syntax 2020-04-06 16:32:16 -07:00
imgcat.markdown add screenshot of imgcat 2019-12-31 18:33:24 -08:00
index.markdown add docs for the hyperlink_rules config for implicit hyperlinks 2020-01-29 17:41:10 -08:00
installation.markdown docs: split install page into pages by platform 2020-05-30 10:30:32 -07:00
lua.js docs: enable syntax highlighting for lua 2020-04-06 17:39:57 -07:00
multiplexing.markdown docs: update for lua configuration syntax 2020-04-06 16:32:16 -07:00
scrollback.markdown docs: fixup typo 2020-06-05 08:54:16 -07:00
serial.markdown docs: update for lua configuration syntax 2020-04-06 16:32:16 -07:00
shell-integration.markdown docs: more tweaks 2020-04-07 08:45:57 -07:00
ssh.markdown docs: update for lua configuration syntax 2020-04-06 16:32:16 -07:00
SUMMARY.md wezterm: add docs for copy mode 2020-06-05 08:07:46 -07:00