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"
|
||||
12
config/alacritty/alacritty.yml
Normal file
12
config/alacritty/alacritty.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
# Alacritty Konfiguration
|
||||
|
||||
# Einstellungen für das Scrollen
|
||||
scrolling:
|
||||
# Anzahl der Zeilen, die im Scrollback-Puffer gespeichert werden.
|
||||
# Ein Wert von '0' deaktiviert das Scrollen.
|
||||
history: 100000
|
||||
|
||||
# Font Konfiguration
|
||||
font:
|
||||
# Schriftgröße
|
||||
size: 14.0
|
||||
65
config/alacritty/catppuccin-mocha.toml
Normal file
65
config/alacritty/catppuccin-mocha.toml
Normal file
@@ -0,0 +1,65 @@
|
||||
# Catppuccin-Mocha Theme für Alacritty
|
||||
# https://github.com/catppuccin/alacritty
|
||||
|
||||
[colors]
|
||||
draw_bold_text_with_bright_colors = true
|
||||
|
||||
[colors.primary]
|
||||
background = "#1e1e2e"
|
||||
foreground = "#cdd6f4"
|
||||
|
||||
[colors.cursor]
|
||||
cursor = "#f5e0dc"
|
||||
text = "#1e1e2e"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
cursor = "#b4befe"
|
||||
text = "#1e1e2e"
|
||||
|
||||
[colors.selection]
|
||||
background = "#585b70"
|
||||
text = "#cdd6f4"
|
||||
|
||||
[colors.search.matches]
|
||||
background = "#a6adc8"
|
||||
foreground = "#1e1e2e"
|
||||
|
||||
[colors.search.focused_match]
|
||||
background = "#a6e3a1"
|
||||
foreground = "#1e1e2e"
|
||||
|
||||
[colors.footer_bar]
|
||||
background = "#1e1e2e"
|
||||
foreground = "#cdd6f4"
|
||||
|
||||
[colors.hints.start]
|
||||
background = "#f9e2af"
|
||||
foreground = "#1e1e2e"
|
||||
|
||||
[colors.hints.end]
|
||||
background = "#a6adc8"
|
||||
foreground = "#1e1e2e"
|
||||
|
||||
[colors.line_indicator]
|
||||
background = "none"
|
||||
foreground = "none"
|
||||
|
||||
[colors.normal]
|
||||
black = "#45475a"
|
||||
blue = "#89b4fa"
|
||||
cyan = "#89dceb"
|
||||
green = "#a6e3a1"
|
||||
magenta = "#f5c2e7"
|
||||
red = "#f38ba8"
|
||||
white = "#bac2de"
|
||||
yellow = "#f9e2af"
|
||||
|
||||
[colors.bright]
|
||||
black = "#585b70"
|
||||
blue = "#89b4fa"
|
||||
cyan = "#89dceb"
|
||||
green = "#a6e3a1"
|
||||
magenta = "#f5c2e7"
|
||||
red = "#f38ba8"
|
||||
white = "#a6adc8"
|
||||
yellow = "#f9e2af"
|
||||
Reference in New Issue
Block a user