diff --git a/home/private_dot_config/alacritty/alacritty.yml b/home/private_dot_config/alacritty/alacritty.yml deleted file mode 100644 index cc47190d..00000000 --- a/home/private_dot_config/alacritty/alacritty.yml +++ /dev/null @@ -1,31 +0,0 @@ -shell: - program: /usr/bin/fish - args: - - --interactive -env: - TERM: xterm-256color -import: - - ~/.config/alacritty/catppuccin/catppuccin-mocha.yml -font: - normal: - family: FiraCode Nerd Font Mono - style: Regular - bold: - family: FiraCode Nerd Font Mono - style: Bold - italic: - family: FiraCode Nerd Font Mono - style: Italic - bold_italic: - family: FiraCode Nerd Font Mono - style: Bold Italic - size: 11 -draw_bold_text_with_bright_colors: true -window: - opacity: 0.90 - decorations: none - padding: - x: 5 - y: 0 -key_bindings: - - { key: Return, mods: Control|Shift, action: SpawnNewInstance } diff --git a/home/private_dot_config/alacritty/private_alacritty.toml b/home/private_dot_config/alacritty/private_alacritty.toml new file mode 100644 index 00000000..8ab801ee --- /dev/null +++ b/home/private_dot_config/alacritty/private_alacritty.toml @@ -0,0 +1,48 @@ +[[keyboard.bindings]] +action = "SpawnNewInstance" +key = "Return" +mods = "Control|Shift" + +[general] +import = ["~/.config/alacritty/catppuccin/catppuccin-mocha.toml"] + +[terminal] + +[env] +TERM = "xterm-256color" + +[font] +size = 14 + +[font.bold] +family = "FiraCode Nerd Font Mono" +style = "Bold" + +[font.bold_italic] +family = "FiraCode Nerd Font Mono" +style = "Bold Italic" + +[font.italic] +family = "FiraCode Nerd Font Mono" +style = "Italic" + +[font.normal] +family = "FiraCode Nerd Font Mono" +style = "Regular" + +[terminal.shell] +program = "/usr/bin/fish" +args = ["-l"] + +[window] +decorations = "none" +opacity = 0.9 + +[window.padding] +x = 5 +y = 0 + +[colors] +draw_bold_text_with_bright_colors = true + +[keyboard]