Alacritty 가져오기 시도
(겨우 첫날.)
컨디션
macOS: 12.0.1
가져오기
brew로 설치합니다.
brew install --cask alacritty
GiitHub에 dmg도 준비되어 있고 로컬에서build(rust 환경 조정 필요)설정
Alacritty는 환경 설정을 yaml로 수행합니다.
(차라리 GUI가 없음)
나는
~/.config/alacritty/alacritty.yml
에서 준비했다.window:
# デカめがいいので
dimensions:
columns: 200
lines: 60
# macは角丸ウインドウなので余白をとったほうが良い
padding:
x: 8
y: 4
# 少し透過
background_opacity: 0.9
scrolling:
# consoleのlogを10000行まで保持
history: 10000
# スクロール量は3行
multiplier: 3
# フォント設定
# 僕はCicaを利用しているのでお好きなように
font:
normal:
family: 'Cica'
style: Regular
bold:
family: 'Cica'
style: Bold
size: 13.0
offset:
y: 1
use_thin_strokes: true
# 基本はデフォルトのzshですが、tmuxを起動するように
# また起動ずみのtmuxがあればattachにする
shell:
program: /bin/zsh
args:
- -l
- -c
- "/opt/homebrew/bin/tmux a -t 0 || /opt/homebrew/bin/tmux -u"
# キーバインド
key_bindings:
# wikiのrecommnedをそのままコピーしただけ
- { key: Comma, mods: Command, command:
{program: "sh", args: ["-c","open ~/.config/alacritty/alacritty.yml"]} }
- { key: N, mods: Command, action: SpawnNewInstance }
- { key: Space, mods: Alt, chars: " " }
- { key: Back, mods: Super, chars: "\x15" } # delete word/line
- { key: Left, mods: Alt, chars: "\x1bb" } # one word left
- { key: Right, mods: Alt, chars: "\x1bf" } # one word right
- { key: Left, mods: Command, chars: "\x1bOH", mode: AppCursor } # Home
- { key: Right, mods: Command, chars: "\x1bOF", mode: AppCursor } # End
# tmuxのprefixをCtrl-Qにしているので、その設定
# これがないとtmuxのprefixが効かずに、Alacrittyのキーバインドに持っていかれるっぽい?
- { key: Q, mods: Control, chars: "\x11" } # tmux prefix
색상 설정도 많음wiki.또한configuration여기.에는 자신이 좋아하는 설정을 찾아보세요!!
Reference
이 문제에 관하여(Alacritty 가져오기 시도), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/kehra/articles/3cb06e5de83cc9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)