Skip to content

Commit

Permalink
alacritty: migrate configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuma017 committed Mar 20, 2024
1 parent fd5810a commit ed2f861
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 921 deletions.
87 changes: 87 additions & 0 deletions .config/alacritty/alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
[[colors.indexed_colors]]
color = "0xf99157"
index = 16

[[colors.indexed_colors]]
color = "0xa3685a"
index = 17

[[colors.indexed_colors]]
color = "0x393939"
index = 18

[[colors.indexed_colors]]
color = "0x515151"
index = 19

[[colors.indexed_colors]]
color = "0xb4b7b4"
index = 20

[[colors.indexed_colors]]
color = "0xe0e0e0"
index = 21

[colors.bright]
black = "0x999999"
blue = "0x6699cc"
cyan = "0x66cccc"
green = "0x99cc99"
magenta = "0xcc99cc"
red = "0xf2777a"
white = "0xffffff"
yellow = "0xffcc66"

[colors.cursor]
cursor = "0x6699cc"
text = "CellForeground"

[colors.normal]
black = "0x2d2d2d"
blue = "0x6699cc"
cyan = "0x66cccc"
green = "0x99cc99"
magenta = "0xcc99cc"
red = "0xf2777a"
white = "0xcccccc"
yellow = "0xffcc66"

[colors.primary]
background = "0x2d2d2d"
foreground = "0xcccccc"

[font]
size = 14.0

[font.normal]
family = "Hack Nerd Font"

[[keyboard.bindings]]
action = "ReceiveChar"
key = "Space"
mode = "~Search"
mods = "Shift|Control"

[[keyboard.bindings]]
action = "ReceiveChar"
key = "F"
mode = "~Search"
mods = "Command"

[[keyboard.bindings]]
action = "ReceiveChar"
key = "B"
mode = "~Search"
mods = "Command"

[scrolling]
history = 0

[window]
decorations = "buttonless"
opacity = 0.9
option_as_alt = "Both"

[window.padding]
x = 4
y = 4
Loading

0 comments on commit ed2f861

Please sign in to comment.