tune alacritty
This commit is contained in:
parent
40b61db332
commit
0ea59e9826
1 changed files with 29 additions and 7 deletions
|
|
@ -1,5 +1,16 @@
|
||||||
#[shell]
|
# Vi Mode
|
||||||
#program = "/bin/zsh"
|
# The vi mode allows moving around Alacritty's viewport and scrollback using
|
||||||
|
# the keyboard. It also serves as a jump-off point for other features like
|
||||||
|
# search and opening URLs with the keyboard. By default you can launch it
|
||||||
|
# using Ctrl Shift Space.
|
||||||
|
|
||||||
|
# Selection
|
||||||
|
# One useful feature of vi mode is the ability to make selections and copy text
|
||||||
|
# to the clipboard. By default you can start a selection using v and copy it
|
||||||
|
# using y. All selection modes that are available with the mouse can be accessed
|
||||||
|
# from vi mode, including the semantic (Alt v), line (Shift v) and block
|
||||||
|
# selection (Ctrl v). You can also toggle between them while the selection is
|
||||||
|
# still active.
|
||||||
|
|
||||||
import = [
|
import = [
|
||||||
#"~/.config/alacritty/tokyonight_day.toml",
|
#"~/.config/alacritty/tokyonight_day.toml",
|
||||||
|
|
@ -10,6 +21,9 @@ import = [
|
||||||
|
|
||||||
[font]
|
[font]
|
||||||
normal = { family = "JetBrainsMono Nerd Font", style = "Thin" }
|
normal = { family = "JetBrainsMono Nerd Font", style = "Thin" }
|
||||||
|
bold = { style = "Bold" }
|
||||||
|
italic = { style = "Italic" }
|
||||||
|
bold_italic = { style = "Bold Italic" }
|
||||||
size = 17
|
size = 17
|
||||||
|
|
||||||
[window]
|
[window]
|
||||||
|
|
@ -25,8 +39,16 @@ color = "#3a3a3a"
|
||||||
[cursor]
|
[cursor]
|
||||||
style = { shape = "Block", blinking = "Always" }
|
style = { shape = "Block", blinking = "Always" }
|
||||||
|
|
||||||
# Required to make Ctrl+/ work on macOS (used in Telescope)
|
[keyboard]
|
||||||
[[keyboard.bindings]]
|
|
||||||
chars = "\u001F"
|
bindings = [
|
||||||
key = "Slash"
|
# Required to make Ctrl+/ work on macOS (used in Telescope)
|
||||||
mods = "Control"
|
{ chars = "\u001F", key = "Slash", mods = "Control" },
|
||||||
|
{ key = "Key0", mods = "Command", action = "ResetFontSize" },
|
||||||
|
#{ key = "Equals", mods = "Command", action = "IncreaseFontSize" },
|
||||||
|
{ key = "Plus", mods = "Command", action = "IncreaseFontSize" },
|
||||||
|
{ key = "Minus", mods = "Command", action = "DecreaseFontSize" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[mouse]
|
||||||
|
hide_when_typing = true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue