From 242f0cf821123120666f7917635e412f53b5f69f Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 6 Nov 2024 13:18:07 -0600 Subject: no need to be private Signed-off-by: Matt Strapp --- dot_config/alacritty.toml | 135 ++++++++++++++++++++++++++++++++++++++ dot_config/private_alacritty.toml | 134 ------------------------------------- 2 files changed, 135 insertions(+), 134 deletions(-) create mode 100644 dot_config/alacritty.toml delete mode 100644 dot_config/private_alacritty.toml (limited to 'dot_config') 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 + + diff --git a/dot_config/private_alacritty.toml b/dot_config/private_alacritty.toml deleted file mode 100644 index 01d7f97..0000000 --- a/dot_config/private_alacritty.toml +++ /dev/null @@ -1,134 +0,0 @@ -[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 - - -- cgit v1.2.3