mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-28 03:44:57 -04:00
updates
This commit is contained in:
parent
05a7dcaebd
commit
984dc04492
30 changed files with 2213 additions and 1 deletions
38
alacritty/alacritty.yml
Normal file
38
alacritty/alacritty.yml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
shell:
|
||||
program: /usr/bin/zsh
|
||||
|
||||
import:
|
||||
- ~/.config/alacritty/themes/dracula.yml
|
||||
- ~/.config/alacritty/bindings.yml
|
||||
|
||||
cursor:
|
||||
style: Block
|
||||
|
||||
hints:
|
||||
enabled:
|
||||
- regex: "(mailto:|gemini:|gopher:|https:|http:|news:|file:|git:|ssh:|ftp:)[^\u0000-\u001F\u007F-\u009F<>\" {-}\\^⟨⟩`]+"
|
||||
command: xdg-open
|
||||
post_processing: true
|
||||
mouse:
|
||||
mods: Control|Shift
|
||||
|
||||
window:
|
||||
opacity: 0.9
|
||||
padding:
|
||||
x: 5
|
||||
y: 5
|
||||
|
||||
scrolling:
|
||||
history: 100000
|
||||
multiplier: 3
|
||||
|
||||
font:
|
||||
normal:
|
||||
family: "FuraMono Nerd Font Mono"
|
||||
style: Regular
|
||||
bold:
|
||||
family: "FuraMono Nerd Font Mono"
|
||||
style: Bold
|
||||
italic:
|
||||
family: "FuraMono Nerd Font Mono"
|
||||
style: Bold
|
||||
2
alacritty/bindings.yml
Normal file
2
alacritty/bindings.yml
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
mouse_bindings:
|
||||
- { mouse: Right, action: CopySelection }
|
||||
61
alacritty/themes/dracula.yml
Normal file
61
alacritty/themes/dracula.yml
Normal 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'
|
||||
Loading…
Reference in a new issue