configuration form the arch linux stored

This commit is contained in:
filipriec
2025-09-22 08:27:51 +02:00
commit 3e6d1a0d61
166 changed files with 807076 additions and 0 deletions

29
alacritty/alacritty.toml Normal file
View File

@@ -0,0 +1,29 @@
[terminal.shell]
args = ["--login"]
program = "/bin/zsh"
[window]
opacity = 1
[font]
normal = { family = "JetBrains Mono", style = "Regular" }
size = 13
[terminal]
[[keyboard.bindings]]
key = "C"
mods = "Control|Alt"
command = { program = "sh", args = ["-c", "alacritty msg scrollback | xclip -selection clipboard -i"] }
# Enter vi mode with Ctrl+Space
[[keyboard.bindings]]
key = "Space"
mods = "Control"
action = "ToggleViMode"
# Exit vi mode with Esc
[[keyboard.bindings]]
key = "Escape"
mode = "Vi"
action = "ToggleViMode"