Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update default font style from normal to Normal #933

Merged
merged 1 commit into from
Feb 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,25 +210,25 @@ features = []

[fonts.regular]
family = "cascadiacode"
style = "normal"
style = "Normal"
width = "Normal"
weight = 400

[fonts.bold]
family = "cascadiacode"
style = "normal"
style = "Normal"
width = "Normal"
weight = 800

[fonts.italic]
family = "cascadiacode"
style = "italic"
style = "Italic"
width = "Normal"
weight = 400

[fonts.bold-italic]
family = "cascadiacode"
style = "italic"
style = "Italic"
width = "Normal"
weight = 800
```
Expand Down Expand Up @@ -870,7 +870,7 @@ Result: `zsh`
## title.placeholder

Configure initial title.

```toml
[title]
placeholder = "▲"
Expand Down Expand Up @@ -1015,7 +1015,7 @@ Example:
decorations = "Enabled"
```

## window.macos-use-unified-titlebar
## window.macos-use-unified-titlebar

You can use MacOS unified titlebar by config, it's disabled by default.

Expand Down
8 changes: 4 additions & 4 deletions rio-backend/src/config/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -346,22 +346,22 @@ pub fn default_config_file_content() -> String {
#
# [fonts.regular]
# family = "cascadiamono"
# style = "normal"
# style = "Normal"
# weight = 400
#
# [fonts.bold]
# family = "cascadiamono"
# style = "normal"
# style = "Normal"
# weight = 800
#
# [fonts.italic]
# family = "cascadiamono"
# style = "italic"
# style = "Italic"
# weight = 400
#
# [fonts.bold-italic]
# family = "cascadiamono"
# style = "italic"
# style = "Italic"
# weight = 800

# Scroll
Expand Down
Loading