dotfiles

personal dotfiles
git clone anongit@rnpnr.xyz:dotfiles.git
Log | Files | Refs | Feed | Submodules

Commit: 3fd0c758f46c3dc3dea712e069178d80295b76f5
Parent: cc4d0e472a99a79657ccdbd7e7b55663f2eced3d
Author: Randy Palamar
Date:   Fri, 10 Jul 2026 07:13:30 -0700

add alacritty config

Diffstat:
A.config/alacritty/alacritty.toml | 38++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+), 0 deletions(-)

diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml @@ -0,0 +1,38 @@ +[font] +size=16 + +[colors.primary] +background = "#090909" +foreground = "#dcd4a9" + +[colors.normal] +black = "#090909" +red = "#cd3946" +green = "#359d4a" +yellow = "#6c32cb" +blue = "#3570be" +magenta = "#b23661" +cyan = "#397bcd" +white = "#dcd4a9" + +[colors.bright] +black = "#555555" +red = "#ff5555" +green = "#55ff55" +yellow = "#804cda" +blue = "#5555ff" +magenta = "#ff55ff" +cyan = "#55ffff" +white = "#ffffff" + +[window] +padding = {x = 16, y = 16} + +[keyboard] +bindings = [ + {key = "C", mods = "Alt", action = "Copy"}, + {key = "V", mods = "Alt", action = "Paste"}, + {key = "J", mods = "Alt|Shift", action = "DecreaseFontSize"}, + {key = "K", mods = "Alt|Shift", action = "IncreaseFontSize"}, + {key = "Enter", mods = "Control|Shift", action = "CreateNewWindow"}, +]