Skip to content

Commit

Permalink
fix typo in file name
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Nov 20, 2024
1 parent 8478049 commit 98bf22d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,13 +161,13 @@ This repository provides [Alacritty](https://alacritty.org/) theme of this color

How to apply this theme:

1. Download [spring_night.toml](./alacritty/sprint_night.toml) to `~/.config/alacritty/spring_night.toml`
1. Download [spring_night.toml](./alacritty/spring_night.toml) to `~/.config/alacritty/theme/spring_night.toml`
2. Add the following configuration to `~/.config/alacritty/alacritty.toml`

```toml
[general]
import = [
"~/.config/alacritty/spring_night.toml"
"~/.config/alacritty/theme/spring_night.toml"
]
```

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion gen/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1014,7 +1014,7 @@ fn main() -> Result<()> {
.with_context(|| format!("While writing to airline theme file {:?}", &path))?;
let path = PathBuf::from(&dir)
.join("alacritty")
.join("sprint_night.toml");
.join("spring_night.toml");
writer.out = io::BufWriter::new(
File::create(&path)
.with_context(|| format!("Could not make alacritty theme file {:?}", &path))?,
Expand Down

0 comments on commit 98bf22d

Please sign in to comment.