From 352102f99822c1dde2034c6d619d48f2957fd961 Mon Sep 17 00:00:00 2001 From: yutent Date: Mon, 26 Jun 2023 07:19:02 +0000 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0alacritty=E7=9A=84=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/alacritty/alacritty.yml | 86 +++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 .config/alacritty/alacritty.yml diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml new file mode 100644 index 0000000..c0861d2 --- /dev/null +++ b/.config/alacritty/alacritty.yml @@ -0,0 +1,86 @@ +env: + TERM: xterm-256color + +window: + dimensions: + columns: 135 + lines: 40 + + + opacity: 0.96 + + +scrolling: + history: 100000 + + +font: + normal: + family: Menlo + + bold: + family: Menlo + + italic: + family: Menlo + + size: 11.0 + +cursor: + style: + blinking: On + + blink_interval: 700 + +colors: + + + + primary: + background: '0x57606f' + foreground: '0xf2f5fc' + + selection: + text: 'CellForeground' + background: '#96CCF8' + + normal: + black: '0x323F4D' + red: '0xF33E22' + green: '0x19BC9C' + yellow: '0xF5BD07' + blue: '0x2095F3' + magenta: '0x9595D0' + cyan: '0x05979A' + white: '0xCED6E0' + + bright: + black: '0x86909B' + red: '0xFC7661' + green: '0x41D3B7' + yellow: '0xFFD341' + blue: '0x64B5F6' + magenta: '0xA6A6D1' + cyan: '0x34E2E2' + white: '0xDAE1E9' + + +draw_bold_text_with_bright_colors: true +transparent_background_colors: true + + +mouse_bindings: + # - { mouse: Middle, action: PasteSelection } + - { mouse: Middle, action: None } + +key_bindings: + - { key: Equals, mods: Control, action: None } + - { key: Minus, mods: Control, action: None } + - { key: K, mods: Super, action: ClearHistory } + - { key: K, mods: Super, chars: "\x0c" } + - { key: V, mods: Super, action: Paste } + - { key: C, mods: Super, action: Copy } + - { key: W, mods: Super, action: Quit } + - { key: Q, mods: Super, action: None } + - { key: L, mods: Super, action: None } + - { key: N, mods: Super, action: CreateNewWindow } \ No newline at end of file