-
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.
Update alacritty config to toml files.
- Loading branch information
1 parent
1ee1da9
commit 51c6437
Showing
2 changed files
with
115 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import = ["/home/bruno/.config/alacritty/catppuccin/catppuccin-mocha.toml"] | ||
|
||
[font] | ||
size = 14 | ||
|
||
[font.bold] | ||
family = "IBM Plex Mono" | ||
style = "Bold" | ||
|
||
[font.bold_italic] | ||
family = "IBM Plex Mono" | ||
style = "Bold Italic" | ||
|
||
[font.italic] | ||
family = "IBM Plex Mono" | ||
style = "Italic" | ||
|
||
[font.normal] | ||
family = "IBM Plex Mono" | ||
style = "Regular" | ||
|
||
[[keyboard.bindings]] | ||
action = "SpawnNewInstance" | ||
key = "Return" | ||
mods = "Control|Shift" | ||
|
||
[[keyboard.bindings]] | ||
action = "IncreaseFontSize" | ||
key = "K" | ||
mods = "Control|Shift" | ||
|
||
[[keyboard.bindings]] | ||
action = "DecreaseFontSize" | ||
key = "J" | ||
mods = "Control|Shift" | ||
|
||
[[keyboard.bindings]] | ||
action = "ResetFontSize" | ||
key = "U" | ||
mods = "Control|Shift" |
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,75 @@ | ||
[colors.primary] | ||
background = "#1E1E2E" | ||
foreground = "#CDD6F4" | ||
dim_foreground = "#CDD6F4" | ||
bright_foreground = "#CDD6F4" | ||
|
||
[colors.cursor] | ||
text = "#1E1E2E" | ||
cursor = "#F5E0DC" | ||
|
||
[colors.vi_mode_cursor] | ||
text = "#1E1E2E" | ||
cursor = "#B4BEFE" | ||
|
||
[colors.search.matches] | ||
foreground = "#1E1E2E" | ||
background = "#A6ADC8" | ||
|
||
[colors.search.focused_match] | ||
foreground = "#1E1E2E" | ||
background = "#A6E3A1" | ||
|
||
#[colors.footer_bar] | ||
#foreground = "#1E1E2E" | ||
#background = "#A6ADC8" | ||
|
||
[colors.hints.start] | ||
foreground = "#1E1E2E" | ||
background = "#F9E2AF" | ||
|
||
[colors.hints.end] | ||
foreground = "#1E1E2E" | ||
background = "#A6ADC8" | ||
|
||
[colors.selection] | ||
text = "#1E1E2E" | ||
background = "#F5E0DC" | ||
|
||
[colors.normal] | ||
black = "#45475A" | ||
red = "#F38BA8" | ||
green = "#A6E3A1" | ||
yellow = "#F9E2AF" | ||
blue = "#89B4FA" | ||
magenta = "#F5C2E7" | ||
cyan = "#94E2D5" | ||
white = "#BAC2DE" | ||
|
||
[colors.bright] | ||
black = "#585B70" | ||
red = "#F38BA8" | ||
green = "#A6E3A1" | ||
yellow = "#F9E2AF" | ||
blue = "#89B4FA" | ||
magenta = "#F5C2E7" | ||
cyan = "#94E2D5" | ||
white = "#A6ADC8" | ||
|
||
[colors.dim] | ||
black = "#45475A" | ||
red = "#F38BA8" | ||
green = "#A6E3A1" | ||
yellow = "#F9E2AF" | ||
blue = "#89B4FA" | ||
magenta = "#F5C2E7" | ||
cyan = "#94E2D5" | ||
white = "#BAC2DE" | ||
|
||
[[colors.indexed_colors]] | ||
index = 16 | ||
color = "#FAB387" | ||
|
||
[[colors.indexed_colors]] | ||
index = 17 | ||
color = "#F5E0DC" |