summaryrefslogtreecommitdiff
path: root/.config/alacritty
diff options
context:
space:
mode:
authoraktersnurra <grydholm@kth.se>2021-02-23 21:11:49 +0100
committeraktersnurra <grydholm@kth.se>2021-02-23 21:11:49 +0100
commit1aca2302cbd0015496f5a272f49bc45f56ebb54d (patch)
tree6b1cbb997130c99412a5e71fa242b7ae7628a1ff /.config/alacritty
parent5b883c75e9d5bb93e635d798fd1aeb9ab8c8300a (diff)
autoload files if changed when in buffer
Diffstat (limited to '.config/alacritty')
-rw-r--r--.config/alacritty/alacritty.yml19
1 files changed, 12 insertions, 7 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml
index 97ea954..8af599d 100644
--- a/.config/alacritty/alacritty.yml
+++ b/.config/alacritty/alacritty.yml
@@ -1,6 +1,6 @@
-draw_bold_text_with_bright_colors: true
+# draw_bold_text_with_bright_colors: true
# Set this if using macOS
-#alt_send_esc: false
+alt_send_esc: false
colors:
primary:
background: '#2e3440'
@@ -55,22 +55,22 @@ background_opacity: 1.0
font:
# The normal (roman) font face to use.
normal:
- family: Space Mono Nerd Font
+ family: SpaceMono Nerd Font
# Style can be specified to pick a specific face.
style: Regular
# The bold font face
bold:
- family: Space Mono Nerd Font
+ family: SpaceMono Nerd Font
# Style can be specified to pick a specific face.
# style: Bold
# The italic font face
italic:
- family: Space Mono Nerd Font
+ family: SpaceMono Nerd Font
# Style can be specified to pick a specific face.
# style: Italic
- size: 11.0
+ size: 14.0
offset:
x: 0
@@ -103,6 +103,11 @@ key_bindings:
- { key: Key0, mods: Control, action: ResetFontSize }
- { key: Equals, mods: Control, action: IncreaseFontSize }
# - { key: Add, mods: Control, action: IncreaseFontSize }
- # - { key: Subtract, mods: Control, action: DecreaseFontSize }
+ # - { key: Subtract, mods: Control, action: DecreaseFontSize }
+ # Vi mode
+ - { key: LBracket, mods: Control|Alt, action: ToggleViMode }
+ - { key: Q, mode: Vi, action: ToggleViMode }
+ - { key: H, mods: Shift, mode: Vi, action: First }
+ - { key: L, mods: Shift, mode: Vi, action: Last }
- { key: Minus, mods: Control, action: DecreaseFontSize }
- { key: N, mods: Control, action: SpawnNewInstance }