diff options
author | Aaditya Dhruv <[email protected]> | 2025-06-06 11:16:42 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-06-06 11:17:00 -0500 |
commit | 5fcb99d7c16029ee0495a437a7bbe7b003dda023 (patch) | |
tree | c4074843eaf86869d5902be30a0c5068c3740dd2 /src/config/files/alacritty/alacritty.toml | |
parent | 97f21912d5f087dfa15cdba7de04e500ea08743a (diff) |
Cleanup configs
Diffstat (limited to 'src/config/files/alacritty/alacritty.toml')
-rw-r--r-- | src/config/files/alacritty/alacritty.toml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/config/files/alacritty/alacritty.toml b/src/config/files/alacritty/alacritty.toml new file mode 100644 index 0000000..e1eb84a --- /dev/null +++ b/src/config/files/alacritty/alacritty.toml @@ -0,0 +1,38 @@ +[colors.normal] +black = "#282828" +blue = "#7daea3" +cyan = "#89b482" +green = "#a9b665" +magenta = "#d3869b" +red = "#ea6962" +white = "#d4be98" +yellow = "#e78a4e" + +[colors.primary] +background = "#1d2021" +foreground = "#ebdbb2" + +[colors.vi_mode_cursor] +cursor = "CellForeground" +text = "CellBackground" + +[env] +TERM = "alacritty" + +[font] +size = 14.0 + +[[keyboard.bindings]] +action = "CreateNewWindow" +key = "N" +mods = "Control" + +[[keyboard.bindings]] +action = "Quit" +key = "W" +mods = "Super" + +[[keyboard.bindings]] +action = "ToggleFullscreen" +key = "F" +mods = "Super" |