Added Alacritty

This commit is contained in:
Trianta 2024-01-16 18:22:14 -06:00
parent 4be9ef7313
commit 0bd2445ab1
3 changed files with 52 additions and 0 deletions

48
alacritty/alacritty.toml Normal file
View File

@ -0,0 +1,48 @@
import = ["/home/trianta/.config/alacritty/catppuccin/catppuccin-mocha.toml"]
[cursor.style]
shape = "Underline"
[env]
TERM = "xterm-256color"
[font]
size = 11
[colors]
footer_bar = { foreground = "#181818", background = "#d8d8d8" }
[font.normal]
family = "HackNerdFont"
[[keyboard.bindings]]
action = "ScrollPageUp"
key = "PageUp"
mode = "~Alt"
mods = "Shift"
[[keyboard.bindings]]
action = "ScrollPageDown"
key = "PageDown"
mode = "~Alt"
mods = "Shift"
[[keyboard.bindings]]
action = "ScrollToTop"
key = "Home"
mode = "~Alt"
mods = "Shift"
[[keyboard.bindings]]
action = "ScrollToBottom"
key = "End"
mode = "~Alt"
mods = "Shift"
[shell]
args = ["--login"]
program = "/bin/zsh"
[window]
opacity = 0.5

1
alacritty/catppuccin Submodule

@ -0,0 +1 @@
Subproject commit 832787d6cc0796c9f0c2b03926f4a83ce4d4519b

3
update.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
rsync --recursive ~/.config/alacritty $(dirname "$0")