Added alacritty config.

This commit is contained in:
Josh W 2024-10-03 13:54:41 -04:00
parent 993e416148
commit 400a10ade3
2 changed files with 72 additions and 0 deletions

View file

@ -2,6 +2,21 @@
My personalized set of configurations.
## alacritty
I'll add more themes as I try them out. I use Hack Nerd Font as it has been a solid choice for many years.
### Requirements
None.
### Setup
```
$ cp -r alacritty/ ~/.config/.
$ ln -s ~/.config/alacritty/alacritty-<THEME>.toml ~/.config/alacritty/alacritty.toml
```
## nvim (Neovim)
Here are the plugins I'm currently using:

View file

@ -0,0 +1,57 @@
[colors.bright]
black = "#928374"
blue = "#83a598"
cyan = "#8ec07c"
green = "#b8bb26"
magenta = "#d3869b"
red = "#fb4934"
white = "#ebdbb2"
yellow = "#fabd2f"
[colors.cursor]
cursor = "CellForeground"
text = "CellBackground"
[colors.normal]
black = "#282828"
blue = "#458588"
cyan = "#689d6a"
green = "#98971a"
magenta = "#b16286"
red = "#cc241d"
white = "#a89984"
yellow = "#d79921"
[colors.primary]
background = "#282828"
foreground = "#ebdbb2"
[colors.selection]
background = "CellForeground"
text = "CellBackground"
[env]
TERM = "xterm-256color"
[font]
size = 11.0
[font.bold]
family = "Hack Nerd Font Mono"
style = "Bold"
[font.bold_italic]
family = "Hack Nerd Font Mono"
style = "Bold Italic"
[font.italic]
family = "Hack Nerd Font Mono"
style = "Italic"
[font.normal]
family = "Hack Nerd Font Mono"
style = "Regular"
[window.padding]
x = 4
y = 4