aboutsummaryrefslogtreecommitdiffstats
path: root/.config/alacritty
diff options
context:
space:
mode:
Diffstat (limited to '.config/alacritty')
-rw-r--r--.config/alacritty/alacritty.toml9
-rw-r--r--.config/alacritty/env.toml1
-rw-r--r--.config/alacritty/font.toml25
-rw-r--r--.config/alacritty/keybindings.toml0
-rw-r--r--.config/alacritty/mouse.toml2
-rw-r--r--.config/alacritty/themes/catppuccin-mocha.toml66
-rw-r--r--.config/alacritty/themes/doom-one-dark.yml32
-rw-r--r--.config/alacritty/themes/dracula.toml57
-rw-r--r--.config/alacritty/themes/fairyflossdark.yml32
-rw-r--r--.config/alacritty/themes/molokai.yml34
-rw-r--r--.config/alacritty/window.toml2
11 files changed, 78 insertions, 182 deletions
diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml
index c24bd97..8c68498 100644
--- a/.config/alacritty/alacritty.toml
+++ b/.config/alacritty/alacritty.toml
@@ -1,10 +1,9 @@
[general]
import = [
- #"~/.config/alacritty/font.toml",
- #"~/.config/alacritty/keybindings.toml",
- #"~/.config/alacritty/mouse.toml",
+ "~/.config/alacritty/font.toml",
+ "~/.config/alacritty/mouse.toml",
"~/.config/alacritty/shell.toml",
"~/.config/alacritty/env.toml",
- #"~/.config/alacritty/window.toml",
- #"~/.config/alacritty/themes/dracula.toml"
+ "~/.config/alacritty/window.toml",
+ "~/.config/alacritty/themes/catppuccin-mocha.toml"
]
diff --git a/.config/alacritty/env.toml b/.config/alacritty/env.toml
index d8f1069..a2fc11a 100644
--- a/.config/alacritty/env.toml
+++ b/.config/alacritty/env.toml
@@ -1,2 +1,3 @@
[env]
WINIT_X11_SCALE_FACTOR = "1.1"
+TERM = "xterm-256color"
diff --git a/.config/alacritty/font.toml b/.config/alacritty/font.toml
index c2d861e..3d211a1 100644
--- a/.config/alacritty/font.toml
+++ b/.config/alacritty/font.toml
@@ -2,24 +2,9 @@
draw_bold_text_with_bright_colors = true
[font]
-size = 8.0
+size = 11
-[font.bold]
-family = "Source Code Pro"
-style = "Bold"
-
-[font.bold_italic]
-family = "Source Code Pro"
-style = "Bold Italic"
-
-[font.italic]
-family = "Source Code Pro"
-style = "Italic"
-
-[font.normal]
-family = "Source Code Pro"
-style = "Regular"
-
-[font.offset]
-x = 0
-y = -1
+normal.family = "Hack Nerd Font Mono"
+bold.family = "Hack Nerd Font Mono"
+italic.family = "Hack Nerd Font Mono"
+bold_italic.family = "Hack Nerd Font Mono"
diff --git a/.config/alacritty/keybindings.toml b/.config/alacritty/keybindings.toml
deleted file mode 100644
index e69de29..0000000
--- a/.config/alacritty/keybindings.toml
+++ /dev/null
diff --git a/.config/alacritty/mouse.toml b/.config/alacritty/mouse.toml
index f65083c..f62083f 100644
--- a/.config/alacritty/mouse.toml
+++ b/.config/alacritty/mouse.toml
@@ -1,5 +1,5 @@
[mouse]
-hide_when_typing = false
+hide_when_typing = true
[[mouse.bindings]]
action = "PasteSelection"
diff --git a/.config/alacritty/themes/catppuccin-mocha.toml b/.config/alacritty/themes/catppuccin-mocha.toml
new file mode 100644
index 0000000..672931b
--- /dev/null
+++ b/.config/alacritty/themes/catppuccin-mocha.toml
@@ -0,0 +1,66 @@
+[colors.primary]
+#background = "#1e1e2e"
+background = "#11111b" # crust
+foreground = "#cdd6f4"
+dim_foreground = "#7f849c"
+bright_foreground = "#cdd6f4"
+
+[colors.cursor]
+text = "#1e1e2e"
+cursor = "#f5e0dc"
+
+[colors.vi_mode_cursor]
+text = "#1e1e2e"
+cursor = "#b4befe"
+
+[colors.search.matches]
+foreground = "#1e1e2e"
+background = "#a6adc8"
+
+[colors.search.focused_match]
+foreground = "#1e1e2e"
+background = "#a6e3a1"
+
+[colors.footer_bar]
+foreground = "#1e1e2e"
+background = "#a6adc8"
+
+[colors.hints.start]
+foreground = "#1e1e2e"
+background = "#f9e2af"
+
+[colors.hints.end]
+foreground = "#1e1e2e"
+background = "#a6adc8"
+
+[colors.selection]
+text = "#1e1e2e"
+background = "#b4befe"
+
+[colors.normal]
+black = "#45475a"
+red = "#f38ba8"
+green = "#a6e3a1"
+yellow = "#f9e2af"
+blue = "#89b4fa"
+magenta = "#f5c2e7"
+cyan = "#94e2d5"
+white = "#bac2de"
+
+[colors.bright]
+black = "#585b70"
+red = "#f38ba8"
+green = "#a6e3a1"
+yellow = "#f9e2af"
+blue = "#89b4fa"
+magenta = "#f5c2e7"
+cyan = "#94e2d5"
+white = "#a6adc8"
+
+[[colors.indexed_colors]]
+index = 16
+color = "#fab387"
+
+[[colors.indexed_colors]]
+index = 17
+color = "#f5e0dc"
diff --git a/.config/alacritty/themes/doom-one-dark.yml b/.config/alacritty/themes/doom-one-dark.yml
deleted file mode 100644
index de3393f..0000000
--- a/.config/alacritty/themes/doom-one-dark.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-# Doom One Dark theme, copied from DistroTube's config
-
-colors:
- # Default colors
- primary:
- # background: '0x282c34'
- background: '0x100b13'
- foreground: '0xbbc2cf'
-
- # Normal colors
- normal:
- # black: '0x1c1f24'
- black: '0x000000'
- red: '0xff6c6b'
- green: '0x98be65'
- yellow: '0xda8548'
- blue: '0x51afef'
- magenta: '0xc678dd'
- cyan: '0x5699af'
- white: '0x202328'
-
- # Bright colors
- bright:
- # black: '0x5b6268'
- black: '0x000000'
- red: '0xda8548'
- green: '0x4db5bd'
- yellow: '0xecbe7b'
- blue: '0x3071db' # This is 2257a0 in Doom Emacs but I lightened it.
- magenta: '0xa9a1e1'
- cyan: '0x46d9ff'
- white: '0xdfdfdf'
diff --git a/.config/alacritty/themes/dracula.toml b/.config/alacritty/themes/dracula.toml
deleted file mode 100644
index 1afe74d..0000000
--- a/.config/alacritty/themes/dracula.toml
+++ /dev/null
@@ -1,57 +0,0 @@
-[colors.bright]
-black = "0x4d4d4d"
-blue = "0xcaa9fa"
-cyan = "0x9aedfe"
-green = "0x5af78e"
-magenta = "0xff92d0"
-red = "0xff6e67"
-white = "0xe6e6e6"
-yellow = "0xf4f99d"
-
-[colors.cursor]
-cursor = "CellForeground"
-text = "CellBackground"
-
-[colors.dim]
-black = "0x14151b"
-blue = "0x4d5b86"
-cyan = "0x59dffc"
-green = "0x1ef956"
-magenta = "0xff46b0"
-red = "0xff2222"
-white = "0xe6e6d1"
-yellow = "0xebf85b"
-
-[colors.line_indicator]
-background = "None"
-foreground = "None"
-
-[colors.normal]
-black = "0x0e0a10"
-blue = "0xbd93f9"
-cyan = "0x8be9fd"
-green = "0x50fa7b"
-magenta = "0xff79c6"
-red = "0xff5555"
-white = "0xbfbfbf"
-yellow = "0xf1fa8c"
-
-[colors.primary]
-background = "0x0e0911"
-foreground = "0xf8f8f2"
-
-[colors.search.focused_match]
-background = "0xffb86c"
-foreground = "0x44475a"
-
-[colors.search.matches]
-background = "0x50fa7b"
-foreground = "0x44475a"
-
-[colors.selection]
-background = "0x44475a"
-text = "CellForeground"
-
-[colors.vi_mode_cursor]
-cursor = "CellForeground"
-text = "CellBackground"
diff --git a/.config/alacritty/themes/fairyflossdark.yml b/.config/alacritty/themes/fairyflossdark.yml
deleted file mode 100644
index 61ff9a7..0000000
--- a/.config/alacritty/themes/fairyflossdark.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-# Colors (Molokai)
-colors:
- # Default colors
- primary:
- background: '0x42395d'
- foreground: '0xf8f8f2'
-
- # Colors the cursor will use if `custom_cursor_colors` is true
- # text: '0x'
- # cursor: '0x'
-
- # Normal colors
- normal:
- black: '0x42395d'
- red: '0xa8757b'
- green: '0xff857f'
- yellow: '0xe6c000'
- blue: '0xae81ff'
- magenta: '0x716799'
- cyan: '0xc2ffdf'
- white: '0xf8f8f2'
-
- # Bright colors
- bright:
- black: '0x75507b'
- red: '0xffb8d1'
- green: '0xf1568e'
- yellow: '0xd5a425'
- blue: '0xc5a3ff'
- magenta: '0x8077a8'
- cyan: '0xc2ffff'
- white: '0xf8f8f0'
diff --git a/.config/alacritty/themes/molokai.yml b/.config/alacritty/themes/molokai.yml
deleted file mode 100644
index b5bea8d..0000000
--- a/.config/alacritty/themes/molokai.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-# Colors (Molokai)
-colors:
- # Default colors
- primary:
- background: '0x151515'
- foreground: '0xeaeaea'
-
- # Colors the cursor will use if `custom_cursor_colors` is true
- cursor:
- text: '0x000000'
- cursor: '0xffffff'
-
- # Normal colors
- normal:
- black: '0x121212'
- red: '0xfa2573'
- # green: '0x98e123' # Correct Molokai colour
- green: '0x9cff00' # Better looking colour
- yellow: '0xdfd460'
- blue: '0x1080d0'
- magenta: '0x8700ff'
- cyan: '0x43a8d0'
- white: '0xbbbbbb'
-
- # Bright colors
- bright:
- black: '0x555555'
- red: '0xf6669d'
- green: '0xb1e05f'
- yellow: '0xfff26d'
- blue: '0x00afff'
- magenta: '0xaf87ff'
- cyan: '0x51ceff'
- white: '0xffffff'
diff --git a/.config/alacritty/window.toml b/.config/alacritty/window.toml
index 843f080..f864c56 100644
--- a/.config/alacritty/window.toml
+++ b/.config/alacritty/window.toml
@@ -5,7 +5,7 @@ history = 20000
decorations = "full"
dynamic_padding = false
dynamic_title = true
-opacity = 0.7
+opacity = 0.9
startup_mode = "Windowed"
title = "Alacritty"