summaryrefslogtreecommitdiff
path: root/alacritty
diff options
context:
space:
mode:
authorilotterytea <ilotterytea@proton.me>2024-05-26 20:10:26 +0500
committerilotterytea <ilotterytea@proton.me>2024-05-26 20:10:26 +0500
commit036c889c4a4f7f59d1e1a592586b54c5c5e93005 (patch)
treeaa76d678790abc79f24edf83c17a564eb2c6f65d /alacritty
initial commitHEADmaster
Diffstat (limited to 'alacritty')
-rw-r--r--alacritty/alacritty.toml41
-rw-r--r--alacritty/alacritty.yml110
2 files changed, 151 insertions, 0 deletions
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'