Skip to content

Commit

Permalink
Add the config file for alacritty.
Browse files Browse the repository at this point in the history
  • Loading branch information
ktsuda committed Feb 13, 2022
1 parent 5e11283 commit 5ea4e26
Showing 1 changed file with 83 additions and 0 deletions.
83 changes: 83 additions & 0 deletions alacritty/.config/alacritty/alacritty.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
window:
dimensions:
columns: 90
lines: 25
padding:
x: 4
y: 4
decorations: none
opacity: 0.9
startup_mode: Windowed
dynamic_title: true
scrolling:
history: 10000
font:
normal:
family: Hack Nerd Font Mono
style: Regular
bold:
style: Bold
italic:
style: Italic
bold_italic:
style: Bold Italic
size: 14.0
use_thin_strokes: true
colors:
primary:
background: "0x282828"
foreground: "0xdfbf8e"
normal:
black: "0x665c54"
red: "0xea6962"
green: "0xa9b665"
yellow: "0xe78a4e"
blue: "0x7daea3"
magenta: "0xd3869b"
cyan: "0x89b482"
white: "0xdfbf8e"
bright:
black: "0x928374"
red: "0xea6962"
green: "0xa9b665"
yellow: "0xe3a84e"
blue: "0x7daea3"
magenta: "0xd3869b"
cyan: "0x89b482"
white: "0xdfbf8e"
cursor:
text: CellBackground
cursor: CellForeground
vi_mode_cursor:
text: CellBackground
cursor: CellForeground
selection:
text: CellBackground
background: CellForeground
transparent_background_colors: true
selection:
semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
save_to_clipboard: true
cursor:
style:
shape: Block
blinking: Never
unfocused_hollow: true
live_config_reload: true
shell:
program: /bin/zsh
args:
- --login
working_directory: None
alt_send_esc: true
mouse:
hide_when_typing: true
mouse_bindings:
- { mouse: Right, action: ExpandSelection }
- { mouse: Right, mods: Control, action: ExpandSelection }
- { mouse: Middle, mode: ~Vi, action: PasteSelection }
key_bindings:
- { key: Return, mods: Control, action: ToggleSimpleFullscreen }
- { key: Space, mods: Shift|Control, mode: ~Search, action: ToggleViMode }
- { key: P, mods: Control, mode: Search, action: SearchHistoryPrevious }
- { key: N, mods: Control, mode: Search, action: SearchHistoryNext }

0 comments on commit 5ea4e26

Please sign in to comment.