diff options
Diffstat (limited to 'dot_config/alacritty.toml')
-rw-r--r-- | dot_config/alacritty.toml | 135 |
1 files changed, 135 insertions, 0 deletions
diff --git a/dot_config/alacritty.toml b/dot_config/alacritty.toml new file mode 100644 index 0000000..125a534 --- /dev/null +++ b/dot_config/alacritty.toml @@ -0,0 +1,135 @@ +[colors] +#draw_bold_text_with_bright_colors = true + +[colors.primary] +background = "0x0c0f14" +foreground = "0xbbc2cf" + +[colors.selection] +text = "0xbbc2cf" + +[cursor] +unfocused_hollow = true + +[font] +size = 10.0 + +[font.bold] +family = "Fira Code Nerd Font Mono" +style = "Bold" + +[font.bold_italic] +family = "Fira Code Nerd Font Mono" +style = "Bold Italic" + +[font.italic] +family = "Fira Code Nerd Font Mono" +style = "Italic" + +[font.normal] +family = "Fira Code Nerd Font Mono" +style = "Regular" + +[font.offset] +x = 0 +y = 1 + +[[keyboard.bindings]] +action = "Paste" +key = "V" +mods = "Control|Shift" + +[[keyboard.bindings]] +action = "Copy" +key = "C" +mods = "Control|Shift" + +[[keyboard.bindings]] +action = "PasteSelection" +key = "Insert" +mods = "Shift" + +[[keyboard.bindings]] +action = "ResetFontSize" +key = "Key0" +mods = "Control" + +[[keyboard.bindings]] +action = "IncreaseFontSize" +key = "Equals" +mods = "Control" + +[[keyboard.bindings]] +action = "IncreaseFontSize" +key = "Plus" +mods = "Control" + +[[keyboard.bindings]] +action = "DecreaseFontSize" +key = "Minus" +mods = "Control" + +[[keyboard.bindings]] +action = "DecreaseFontSize" +key = "Minus" +mods = "Control" + +[[keyboard.bindings]] +action = "ToggleFullscreen" +key = "F11" +mods = "None" + +[[keyboard.bindings]] +action = "Paste" +key = "Paste" +mods = "None" + +[[keyboard.bindings]] +action = "Copy" +key = "Copy" +mods = "None" + +[[keyboard.bindings]] +action = "ClearLogNotice" +key = "L" +mods = "Control" + +[[keyboard.bindings]] +chars = "\f" +key = "L" +mods = "Control" + +[scrolling] +history = 5000 + +[terminal.shell] +program = "zsh" +args = ["-l", "-c", "zellij"] + +#[terminal.shell.url] +#modifiers = "Control" + +#[[terminal.shell.url.launcher]] +#program = "xdg-open" + +[window] +dynamic_padding = false +title = "Terminal" +opacity = 0.95 + +[window.class] +general = "Alacritty" +instance = "Alacritty" + +[window.dimensions] +columns = 100 +lines = 24 + +[general] +import = [ + "~/.config/alacritty/nord.toml" +] + +live_config_reload = true + + |