Initial config
This commit is contained in:
parent
36f7f37091
commit
3557a7e81d
11
README.md
11
README.md
@ -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
30
alacritty.toml
Normal 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
8
colors/candy.toml
Normal file
@ -0,0 +1,8 @@
|
||||
[colors.normal]
|
||||
green = "#3ba04d"
|
||||
blue = "#2288d6"
|
||||
red = "#d62222"
|
||||
magenta = "#aa7240"
|
||||
yellow = "#757575"
|
||||
cyan = "#11a0af"
|
||||
|
5
keybindings.toml
Normal file
5
keybindings.toml
Normal file
@ -0,0 +1,5 @@
|
||||
[keyboard]
|
||||
bindings = [
|
||||
{ key= "C", mods = "Control|Shift", action = "Copy" },
|
||||
{ key= "V", mods = "Control|Shift", action = "Paste" }
|
||||
]
|
Loading…
Reference in New Issue
Block a user