initial commit

This commit is contained in:
mr0xb 2026-05-15 12:48:33 -04:00
commit c4ff3550e4
No known key found for this signature in database
GPG key ID: D61C4E28AAE1BC5C
36 changed files with 2380 additions and 0 deletions

View file

@ -0,0 +1,48 @@
import = [
"/Users/steve.briggs/.config/alacritty/themes/hardhacker.toml",
# "/Users/steve.briggs/.config/alacritty/themes/twdark.toml",
"/Users/steve.briggs/.config/alacritty/bindings.toml"
]
[cursor]
style = "Block"
[font]
size = 18
[font.bold]
family = "MesloLGS NF"
style = "Bold"
[font.italic]
family = "MesloLGS NF"
style = "Bold"
[font.normal]
family = "MesloLGS NF"
style = "Regular"
[[hints.enabled]]
command = "open"
post_processing = true
regex = "(mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)[^\u0000-\u001F\u007F-Ÿ<>\" {-}\\^⟨⟩`]+"
[hints.enabled.mouse]
mods = "Control|Shift"
[scrolling]
history = 100000
multiplier = 3
[selection]
save_to_clipboard = true
[shell]
program = "/bin/zsh"
[window]
opacity = 0.9
[window.padding]
x = 5
y = 5

View file

@ -0,0 +1,41 @@
shell:
program: /bin/zsh
import:
- ~/.config/alacritty/themes/dracula.yml
- ~/.config/alacritty/bindings.yml
cursor:
style: Block
selection:
save_to_clipboard: true
hints:
enabled:
- regex: "(mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)[^\u0000-\u001F\u007F-\u009F<>\" {-}\\^⟨⟩`]+"
command: open
post_processing: true
mouse:
mods: Control|Shift
window:
opacity: 0.9
padding:
x: 5
y: 5
scrolling:
history: 100000
multiplier: 3
font:
size: 18
normal:
family: "MesloLGS NF"
style: Regular
bold:
family: "MesloLGS NF"
style: Bold
italic:
family: "MesloLGS NF"
style: Bold

View file

View file

@ -0,0 +1,2 @@
#mouse_bindings:
# - { mouse: Right, action: CopySelection }

View file

@ -0,0 +1,51 @@
shell:
program: /bin/zsh
import:
- ~/.config/alacritty/themes/dracula.yml
# - ~/.config/alacritty/bindings.yml
cursor:
style: Block
selection:
save_to_clipboard: true
hints:
enabled:
- regex: "(mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)[^\u0000-\u001F\u007F-\u009F<>\" {-}\\^⟨⟩`]+"
command: open
post_processing: true
mouse:
mods: Control|Shift
window:
dimensions:
columns: 500
lines: 30
opacity: 0.9
position:
x: 0
y: 0
padding:
x: 5
y: 5
decorations: none
scrolling:
history: 100000
multiplier: 3
font:
size: 18
normal:
family: "MesloLGS NF"
style: Regular
bold:
family: "MesloLGS NF"
style: Bold
italic:
family: "MesloLGS NF"
style: Bold
key_bindings:
- { key: Return, mods: Command, action: ToggleSimpleFullscreen }

View file

@ -0,0 +1,60 @@
[colors.bright]
black = "#6272a4"
blue = "#d6acff"
cyan = "#a4ffff"
green = "#69ff94"
magenta = "#ff92df"
red = "#ff6e6e"
white = "#ffffff"
yellow = "#ffffa5"
[colors.cursor]
cursor = "CellForeground"
text = "CellBackground"
[colors.footer_bar]
background = "#282a36"
foreground = "#f8f8f2"
[colors.hints.end]
background = "#282a36"
foreground = "#f1fa8c"
[colors.hints.start]
background = "#f1fa8c"
foreground = "#282a36"
[colors.line_indicator]
background = "None"
foreground = "None"
[colors.normal]
black = "#21222c"
blue = "#bd93f9"
cyan = "#8be9fd"
green = "#50fa7b"
magenta = "#ff79c6"
red = "#ff5555"
white = "#f8f8f2"
yellow = "#f1fa8c"
[colors.primary]
background = "#282a36"
bright_foreground = "#ffffff"
foreground = "#f8f8f2"
[colors.search.focused_match]
background = "#ffb86c"
foreground = "#44475a"
[colors.search.matches]
background = "#50fa7b"
foreground = "#44475a"
[colors.selection]
background = "#44475a"
text = "CellForeground"
[colors.vi_mode_cursor]
cursor = "CellForeground"
text = "CellBackground"

View file

@ -0,0 +1,61 @@
# Dracula theme for Alacritty
# https://draculatheme.com/alacritty
#
# Color palette
# https://spec.draculatheme.com
#
# Template
# https://github.com/alacritty/alacritty/blob/master/alacritty.yml
colors:
primary:
background: '#282a36'
foreground: '#f8f8f2'
bright_foreground: '#ffffff'
cursor:
text: CellBackground
cursor: CellForeground
vi_mode_cursor:
text: CellBackground
cursor: CellForeground
search:
matches:
foreground: '#44475a'
background: '#50fa7b'
focused_match:
foreground: '#44475a'
background: '#ffb86c'
footer_bar:
background: '#282a36'
foreground: '#f8f8f2'
hints:
start:
foreground: '#282a36'
background: '#f1fa8c'
end:
foreground: '#f1fa8c'
background: '#282a36'
line_indicator:
foreground: None
background: None
selection:
text: CellForeground
background: '#44475a'
normal:
black: '#21222c'
red: '#ff5555'
green: '#50fa7b'
yellow: '#f1fa8c'
blue: '#bd93f9'
magenta: '#ff79c6'
cyan: '#8be9fd'
white: '#f8f8f2'
bright:
black: '#6272a4'
red: '#ff6e6e'
green: '#69ff94'
yellow: '#ffffa5'
blue: '#d6acff'
magenta: '#ff92df'
cyan: '#a4ffff'
white: '#ffffff'

View file

@ -0,0 +1,34 @@
# hardhacker colorscheme for alacritty
# by xin wu, https//github.com/hardhackerlabs/theme-alacritty
# Default colors
[colors.primary]
background = '#282433'
foreground = '#eee9fc'
[colors.cursor]
text = '#eee9fc'
cursor = '#eee9fc'
# Normal colors
[colors.normal]
black = '#282433'
red = '#e965a5'
green = '#b1f2a7'
yellow = '#ebde76'
blue = '#b1baf4'
magenta = '#e192ef'
cyan = '#b3f4f3'
white = '#eee9fc'
# Bright colors
[colors.bright]
black = '#3f3951'
red = '#e965a5'
green = '#b1f2a7'
yellow = '#ebde76'
blue = '#b1baf4'
magenta = '#e192ef'
cyan = '#b3f4f3'
white = '#eee9fc'

View file

@ -0,0 +1,34 @@
# hardhacker colorscheme for alacritty
# by xin wu, https://github.com/hardhackerlabs/theme-alacritty
colors:
# Default colors
primary:
background: '0x282433'
foreground: '0xeee9fc'
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0xeee9fc'
cursor: '0xeee9fc'
# Normal colors
normal:
black: '0x282433'
red: '0xe965a5'
green: '0xb1f2a7'
yellow: '0xebde76'
blue: '0xb1baf4'
magenta: '0xe192ef'
cyan: '0xb3f4f3'
white: '0xeee9fc'
# Bright colors
bright:
black: '0x3f3951'
red: '0xe965a5'
green: '0xb1f2a7'
yellow: '0xebde76'
blue: '0xb1baf4'
magenta: '0xe192ef'
cyan: '0xb3f4f3'
white: '0xeee9fc'

View file

@ -0,0 +1,34 @@
# hardhacker colorscheme for alacritty
# by xin wu, https//github.com/hardhackerlabs/theme-alacritty
# Default colors
[colors.primary]
background = '#282433'
foreground = '#eee9fc'
[colors.cursor]
text = '#eee9fc'
cursor = '#eee9fc'
# Normal colors
[colors.normal]
black = '#282433'
red = '#ff5452'
green = '#bdde6e'
yellow = '#ffff00'
blue = '#5509ab'
magenta = '#9147ff'
cyan = '#6fc9ff'
white = '#eee9fc'
# Bright colors
[colors.bright]
black = '#3f3951'
red = '#ff5452'
green = '#bdde6e'
yellow = '#ffff00'
blue = '#5509ab'
magenta = '#9147ff'
cyan = '#6fc9ff'
white = '#eee9fc'