my_konfig
This commit is contained in:
40
config/alacritty/alacritty.toml
Normal file
40
config/alacritty/alacritty.toml
Normal file
@@ -0,0 +1,40 @@
|
||||
# =============================================================================
|
||||
# Moderne Alacritty Konfiguration (TOML-Format)
|
||||
# =============================================================================
|
||||
|
||||
# Importiert ein separates Theme. So bleibt die Hauptkonfiguration sauber.
|
||||
# Du kannst Themes hier finden: https://github.com/alacritty/alacritty-theme
|
||||
# Wir legen eine Catppuccin-Theme-Datei im selben Verzeichnis an.
|
||||
[general]
|
||||
import = [
|
||||
"~/.config/alacritty/catppuccin-mocha.toml"
|
||||
]
|
||||
|
||||
[font]
|
||||
# Schriftgröße
|
||||
size = 17.0
|
||||
|
||||
# Schriftart-Einstellungen
|
||||
# "DejaVu Sans Mono" ist eine sehr klare, einfache und weit verbreitete Schriftart.
|
||||
# Die Nerd-Font-Version wird für Symbole empfohlen.
|
||||
# https://www.nerdfonts.com/
|
||||
normal = { family = "DejaVu Sans Mono", style = "Book" }
|
||||
bold = { family = "DejaVu Sans Mono", style = "Bold" }
|
||||
italic = { family = "DejaVu Sans Mono", style = "Oblique" }
|
||||
|
||||
[scrolling]
|
||||
# Anzahl der Zeilen, die im Scrollback-Puffer gespeichert werden.
|
||||
history = 100000
|
||||
|
||||
[window]
|
||||
# Innenabstand im Terminalfenster (in Pixel)
|
||||
# Erzeugt einen schönen Rand um den Text.
|
||||
padding = { x = 10, y = 10 }
|
||||
|
||||
# Hintergrund-Transparenz (Opacity)
|
||||
# 1.0 ist komplett undurchsichtig, 0.0 ist komplett durchsichtig.
|
||||
opacity = 0.95
|
||||
|
||||
# Entfernt die Standard-Fensterdekoration (Titelleiste)
|
||||
# In Sway ist das oft gewünscht, da Sway die Fenster verwaltet.
|
||||
decorations = "none"
|
||||
Reference in New Issue
Block a user