From 036c889c4a4f7f59d1e1a592586b54c5c5e93005 Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sun, 26 May 2024 20:10:26 +0500 Subject: initial commit --- alacritty/alacritty.toml | 41 ++++++++++++++++++ alacritty/alacritty.yml | 110 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 151 insertions(+) create mode 100644 alacritty/alacritty.toml create mode 100644 alacritty/alacritty.yml (limited to 'alacritty') diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml new file mode 100644 index 0000000..8c65901 --- /dev/null +++ b/alacritty/alacritty.toml @@ -0,0 +1,41 @@ +[font] +size = 7.0 + +[font.bold] +family = "Cascadia Mono" + +[font.glyph_offset] +x = 0 +y = 0 + +[font.italic] +family = "Cascadia Mono" + +[font.normal] +family = "Cascadia Mono" + +[font.offset] +x = 0 +y = 0 + +[mouse] +hide_when_typing = false + +[scrolling] +history = 100000 +multiplier = 3 + +[window] +decorations = "none" +dynamic_padding = true +startup_mode = "Windowed" +title = "Alacritty" +opacity = 0.95 + +[window.dimensions] +columns = 100 +lines = 25 + +[window.padding] +x = 5 +y = 5 diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml new file mode 100644 index 0000000..a32f0b2 --- /dev/null +++ b/alacritty/alacritty.yml @@ -0,0 +1,110 @@ +# Alacritty Configuration +env: + TERM: xterm-256color + +# Windows +window: + dimensions: + columns: 100 + lines: 25 + padding: + x: 5 + y: 5 + dynamic_padding: true + decorations: none + startup_mode: Windowed + title: Alacritty + +# Scrolling +scrolling: + # Maximum number of lines in the scrollback buffer. + # Specifying '0' will disable scrolling. + history: 100000 + + # Number of lines the viewport will move for every line scrolled when + # scrollback is enabled (history > 0). + multiplier: 3 + +# Visual Bell +bell: + animation: EaseOutExpo + color: '0xffffff' + duration: 0 + +# Background opacity +background_opacity: 0.96 + +# Font Configuration +font: + normal: + family: Sarasa Term K + # style: Nerd + + bold: + family: Sarasa Term K + italic: + family: Sarasa Term K + # style: "Medium Italic" + + size: 14.0 + + offset: + x: 0 + y: 0 + + glyph_offset: + x: 0 + y: 0 + +draw_bold_text_with_bright_colors: true + +mouse: + # Click settings + # + # The `double_click` and `triple_click` settings control the time + # alacritty should wait for accepting multiple clicks as one double + # or triple click. + double_click: { threshold: 300 } + triple_click: { threshold: 300 } + hide_when_typing: false + +#cursor: + style: + # Cursor shape + # + # Values for `shape`: + # - ▇ Block + # - _ Underline + # - | Beam + shape: Beam + blinking: On + blink_interval: 750 + +# Selection colors +colors: + # Default colors + primary: + background: '0x2a2f33' + foreground: '0xb3cfa7' + + # Normal colors + normal: + black: '0x212529' + red: '0xea5252' + green: '0xacb765' + yellow: '0xc1bf89' + blue: '0x82abbc' + magenta: '0xb18a97' + cyan: '0x88b482' + white: '0xb3cfa7' + + # Bright colors + bright: + black: '0x31363b' + red: '0xea5252' + green: '0xacb765' + yellow: '0xc1bf89' + blue: '0x82abbc' + magenta: '0xb18a97' + cyan: '0x89b482' + white: '0xb3cfa7' -- cgit v1.2.3