Last active
April 14, 2024 22:08
-
-
Save AdamGagorik/9bde0ea5e91f9dc830973ff4e512057f to your computer and use it in GitHub Desktop.
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
live_config_reload = true | |
import = [ | |
"/home/agagorik/.config/alacritty/catppuccin/catppuccin-mocha.toml", | |
] | |
# shell = "/usr/bin/zsh" | |
[env] | |
TERM = "xterm-256color" | |
[window] | |
opacity = 0.95 | |
decorations = "buttonless" | |
dynamic_padding = false | |
[window.padding] | |
x = 10 | |
y = 10 | |
[window.dimensions] | |
columns = 100 | |
lines = 48 | |
[scrolling] | |
history = 4096 | |
multiplier = 3 | |
[font] | |
size = 10 | |
[font.bold] | |
family = "JetBrainsMono Nerd Font" | |
style = "Heavy" | |
[font.bold_italic] | |
family = "JetBrainsMono Nerd Font" | |
style = "Heavy Italic" | |
[font.italic] | |
family = "JetBrainsMono Nerd Font" | |
style = "Medium Italic" | |
[font.normal] | |
family = "JetBrainsMono Nerd Font" | |
style = "Medium" | |
[keyboard] | |
bindings = [ | |
{ key = "I", mods = "Command|Control", action = "ToggleViMode" }, | |
{ key = "V", mods = "Command|Control", action = "Paste" }, | |
{ key = "C", mods = "Command|Control", action = "Copy" }, | |
{ key = "Q", mods = "Command|Control", action = "Quit" }, | |
{ key = "N", mods = "Command", action = "SpawnNewInstance" }, | |
{ key = "Return", mods = "Command", action = "ToggleFullscreen" }, | |
{ key = "Equals", mods = "Command", action = "IncreaseFontSize" }, | |
{ key = "Minus", mods = "Command", action = "DecreaseFontSize" }, | |
{ key = "Minus", mods = "Command|Shift", action = "ResetFontSize" }, | |
] | |
[mouse] | |
hide_when_typing = true | |
bindings = [ | |
{ mouse = "Right", mods = "Control", action = "Paste" }, | |
] | |
[selection] | |
save_to_clipboard = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment