-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix to load os specific config in alacritty (#517)
* Fix os specific config in alacritty Do not set option_as_alt in windows, it warns as not enabled Split files and keep .local at last * Fix redandunt config * Do not put needless files in unix again * Fix crucial miscommit...
- Loading branch information
Showing
7 changed files
with
20 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import = [ | ||
"~/.config/alacritty/common.toml", | ||
"~/.config/alacritty/unix.toml", | ||
# No file will be skipped: https://github.com/alacritty/alacritty/pull/4332/files#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4edR12 | ||
"~/.config/alacritty/local.toml", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import = [ | ||
"~/.config/alacritty/common.toml", | ||
"~/.config/alacritty/windows.toml", | ||
# No file will be skipped: https://github.com/alacritty/alacritty/pull/4332/files#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4edR12 | ||
"~/.config/alacritty/local.toml", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
# https://wiki.archlinux.org/title/Alacritty | ||
|
||
import = [ | ||
"~/.config/alacritty/common.toml", | ||
# Set experimental config or host specific | ||
# No file will be skipped: https://github.com/alacritty/alacritty/pull/4332/files#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4edR12 | ||
"~/.config/alacritty/local.toml", | ||
] | ||
[window] | ||
# https://github.com/alacritty/alacritty/issues/93 | ||
option_as_alt = "Both" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters