Initial config

This commit is contained in:
Candifloss 2024-12-17 13:54:21 +05:30
parent 36f7f37091
commit 3557a7e81d
4 changed files with 52 additions and 2 deletions

View File

@ -1,3 +1,10 @@
# dotfiles_alacritty
# Alacritty dotfiles
Config files for Alacritty terminal emulator
Config files for [Alacritty](https://github.com/alacritty/alacritty) terminal emulator.
File location: `$HOME/.config/alacritty/alacritty.toml`
To use this config:
```bash
git clone https://git.candifloss.cc/candifloss/dotfiles_alacritty.git ~/.config/alacritty
```
Config reference: [ALacritty man-pages](https://alacritty.org/config-alacritty.html)

30
alacritty.toml Normal file
View File

@ -0,0 +1,30 @@
[window]
decorations_theme_variant = "Dark"
dynamic_title = true
title = "Terminal"
opacity = 1
[font]
normal = { family = "IosevkaTermSlab Nerd Font Mono" }
size = 11
[selection]
save_to_clipboard = true
[cursor]
style = { shape = "Block", blinking = "On" }
thickness = 1.0
[colors]
cursor = { text = "#000000", cursor = "#22785E" }
selection = { text = "#D3D7CF", background = "#262626" }
[colors.primary]
background = "#101010"
foreground = "#BBBBBB"
[general]
import = [
"~/.config/alacritty/colors/candy.toml",
"~/.config/alacritty/keybindings.toml"
]

8
colors/candy.toml Normal file
View File

@ -0,0 +1,8 @@
[colors.normal]
green = "#3ba04d"
blue = "#2288d6"
red = "#d62222"
magenta = "#aa7240"
yellow = "#757575"
cyan = "#11a0af"

5
keybindings.toml Normal file
View File

@ -0,0 +1,5 @@
[keyboard]
bindings = [
{ key= "C", mods = "Control|Shift", action = "Copy" },
{ key= "V", mods = "Control|Shift", action = "Paste" }
]