06012024
Migrate to .toml for alacritty configs
This commit is contained in:
parent
e3134290b9
commit
8748a219ea
8 changed files with 131 additions and 0 deletions
56
global/.config/alacritty/alacritty.toml
Normal file
56
global/.config/alacritty/alacritty.toml
Normal file
|
@ -0,0 +1,56 @@
|
|||
import = [
|
||||
"~/.config/alacritty/themes/dracula.toml",
|
||||
"~/.config/alacritty/keybindings.toml"
|
||||
]
|
||||
live_config_reload = true
|
||||
|
||||
[cursor]
|
||||
unfocused_hollow = true
|
||||
|
||||
[cursor.style]
|
||||
shape = "Block"
|
||||
|
||||
[env]
|
||||
TERM = "tmux-256color"
|
||||
|
||||
[font]
|
||||
size = 10.0
|
||||
|
||||
[font.bold]
|
||||
family = "JetBrainsMono NF"
|
||||
style = "Bold"
|
||||
|
||||
[font.bold_italic]
|
||||
family = "JetBrainsMono NF"
|
||||
style = "Bold Italic"
|
||||
|
||||
[font.italic]
|
||||
family = "JetBrainsMono NF"
|
||||
style = "Italic"
|
||||
|
||||
[font.normal]
|
||||
family = "JetBrainsMono NF"
|
||||
style = "Regular"
|
||||
|
||||
|
||||
[scrolling]
|
||||
history = 50000
|
||||
multiplier = 3
|
||||
|
||||
[selection]
|
||||
save_to_clipboard = false
|
||||
semantic_escape_chars = ",│`|:\"' ()[]{}<>\t"
|
||||
|
||||
[shell]
|
||||
args = ["-l", "-c", "tmux attach || tmux"]
|
||||
program = "/bin/zsh"
|
||||
|
||||
[window]
|
||||
decorations = "full"
|
||||
dynamic_padding = false
|
||||
dynamic_title = true
|
||||
startup_mode = "Maximized"
|
||||
|
||||
[window.padding]
|
||||
x = 2
|
||||
y = 2
|
Loading…
Add table
Add a link
Reference in a new issue