Files
dotFiles/.config/alacritty/alacritty.toml

79 lines
1013 B
TOML
Raw Normal View History

2024-01-01 02:53:52 +05:30
import = ["~/.config/alacritty/themes/rose-pine.toml"]
[env]
TERM = "xterm-256color"
[font]
2024-01-24 23:36:09 +05:30
size = 16.0
2024-01-01 02:53:52 +05:30
[font.bold]
style = "Bold"
[font.glyph_offset]
x = 0
y = 1
[font.normal]
2025-03-09 01:13:08 +05:30
family = "JetBrainsMono Nerd Font"
2024-01-01 02:53:52 +05:30
[font.italic]
style = "Italic"
[mouse]
hide_when_typing = true
[cursor]
style = "Beam"
[scrolling]
history = 1000
[window]
decorations = "none"
2024-01-01 03:06:43 +05:30
opacity = 0.95
2024-01-01 02:53:52 +05:30
[window.dimensions]
2024-01-24 23:36:09 +05:30
columns = 98
lines = 28
2024-01-01 02:53:52 +05:30
[window.padding]
x = 0
y = 0
# macOS copy/paste
[[keyboard.bindings]]
action = "Paste"
key = "v"
mods = "Command"
[[keyboard.bindings]]
action = "Copy"
key = "c"
mods = "Command"
[[keyboard.bindings]]
action = "ToggleFullscreen"
key = "Return"
mods = "Control"
[[keyboard.bindings]]
chars = "\u001B[1;5C"
key = "Right"
mods = "Option"
[[keyboard.bindings]]
chars = "\u001B[1;5D"
key = "Left"
mods = "Option"
[[keyboard.bindings]]
chars = "\u0015"
key = "Backspace"
mods = "Command"
[[keyboard.bindings]]
key = "K"
mods = "Command"
mode = "~Vi|~Search"
action = "ClearHistory"