aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config
diff options
context:
space:
mode:
authorLibravatar Arnold Sommerfeld <sommerfeld@strisemarx.com>2024-03-09 11:22:30 +0000
committerLibravatar Arnold Sommerfeld <sommerfeld@strisemarx.com>2024-03-09 11:22:30 +0000
commit5c98cd7401e17cbb3545ffa6db344026f42d3069 (patch)
treef04fbb4f1bbe3e95a073a7369ed256489fd7771b /home/.config
parent8dc42b49a106f6f33fbef0c8a754a4de1a3b4753 (diff)
downloaddotfiles-5c98cd7401e17cbb3545ffa6db344026f42d3069.tar.gz
dotfiles-5c98cd7401e17cbb3545ffa6db344026f42d3069.tar.bz2
dotfiles-5c98cd7401e17cbb3545ffa6db344026f42d3069.zip
Migrate alacritty config
Diffstat (limited to 'home/.config')
-rw-r--r--home/.config/alacritty/alacritty.toml67
-rw-r--r--home/.config/alacritty/alacritty.yml62
2 files changed, 67 insertions, 62 deletions
diff --git a/home/.config/alacritty/alacritty.toml b/home/.config/alacritty/alacritty.toml
new file mode 100644
index 0000000..596738d
--- /dev/null
+++ b/home/.config/alacritty/alacritty.toml
@@ -0,0 +1,67 @@
+live_config_reload = false
+
+[colors.bright]
+black = "0x928374"
+blue = "0x83a598"
+cyan = "0x8ec07c"
+green = "0xb8bb26"
+magenta = "0xd3869b"
+red = "0xfb4934"
+white = "0xebdbb2"
+yellow = "0xfabd2f"
+
+[colors.normal]
+black = "0x282828"
+blue = "0x458588"
+cyan = "0x689d6a"
+green = "0x98971a"
+magenta = "0xb16286"
+red = "0xcc241d"
+white = "0xa89984"
+yellow = "0xd79921"
+
+[colors.primary]
+background = "0x1d2021"
+foreground = "0xebdbb2"
+
+[cursor]
+blink_interval = 500
+blink_timeout = 0
+
+[cursor.style]
+blinking = "On"
+
+[[keyboard.bindings]]
+action = "SpawnNewInstance"
+key = "Return"
+mods = "Control|Shift"
+
+[[keyboard.bindings]]
+action = "ScrollLineUp"
+key = "K"
+mods = "Alt"
+
+[[keyboard.bindings]]
+action = "ScrollLineDown"
+key = "J"
+mods = "Alt"
+
+[[keyboard.bindings]]
+action = "ScrollPageUp"
+key = "U"
+mods = "Alt"
+
+[[keyboard.bindings]]
+action = "ScrollPageDown"
+key = "D"
+mods = "Alt"
+
+[[keyboard.bindings]]
+action = "ScrollToTop"
+key = "G"
+mods = "Alt"
+
+[[keyboard.bindings]]
+action = "ScrollToBottom"
+key = "G"
+mods = "Alt|Shift"
diff --git a/home/.config/alacritty/alacritty.yml b/home/.config/alacritty/alacritty.yml
deleted file mode 100644
index 65185e8..0000000
--- a/home/.config/alacritty/alacritty.yml
+++ /dev/null
@@ -1,62 +0,0 @@
-# Colors (Gruvbox dark)
-colors:
- # Default colors
- primary:
- background: '0x1d2021'
- # medium contrast: background: '0x282828'
- # soft contrast: background: '0x32302f'
- foreground: '0xebdbb2'
-
- # Normal colors
- normal:
- black: '0x282828'
- red: '0xcc241d'
- green: '0x98971a'
- yellow: '0xd79921'
- blue: '0x458588'
- magenta: '0xb16286'
- cyan: '0x689d6a'
- white: '0xa89984'
-
- # Bright colors
- bright:
- black: '0x928374'
- red: '0xfb4934'
- green: '0xb8bb26'
- yellow: '0xfabd2f'
- blue: '0x83a598'
- magenta: '0xd3869b'
- cyan: '0x8ec07c'
- white: '0xebdbb2'
-
-key_bindings:
- - { key: Return, mods: Control|Shift, action: SpawnNewInstance }
- - { key: K, mods: Alt, action: ScrollLineUp }
- - { key: J, mods: Alt, action: ScrollLineDown }
- - { key: U, mods: Alt, action: ScrollPageUp }
- - { key: D, mods: Alt, action: ScrollPageDown }
- - { key: G, mods: Alt, action: ScrollToTop }
- - { key: G, mods: Alt|Shift, action: ScrollToBottom }
-
-cursor:
- # Cursor style
- style:
- # Cursor blinking state
- #
- # Values for `blinking`:
- # - Never: Prevent the cursor from ever blinking
- # - Off: Disable blinking by default
- # - On: Enable blinking by default
- # - Always: Force the cursor to always blink
- blinking: On
-
- # Cursor blinking interval in milliseconds.
- blink_interval: 500
-
- # Time after which cursor stops blinking, in seconds.
- #
- # Specifying '0' will disable timeout for blinking.
- blink_timeout: 0
-
-# Live config reload (changes require restart)
-live_config_reload: false