Update .config/kitty/current-theme.conf Update .config/kitty/kitty.conf Update .config/zsh/env.zsh Update .config/zsh/rc.zsh Add .config/zsh/.zprofile Add .config/zsh/zprofile.zsh
162 lines
3.2 KiB
YAML
Executable file
162 lines
3.2 KiB
YAML
Executable file
env:
|
|
TERM: xterm-256color
|
|
|
|
window:
|
|
padding:
|
|
x: 4
|
|
y: 4
|
|
|
|
title: Alacritty
|
|
|
|
class:
|
|
instance: Alacritty
|
|
general: Alacritty
|
|
|
|
opacity: 0.95
|
|
|
|
scrolling:
|
|
history: 20000
|
|
|
|
font:
|
|
normal:
|
|
family: FiraCode Nerd Font
|
|
style: Regular
|
|
|
|
bold:
|
|
family: FiraCode Nerd Font
|
|
style: Bold
|
|
|
|
italic:
|
|
family: FiraCode Nerd Font
|
|
style: Italic
|
|
|
|
bold_italic:
|
|
family: FiraCode Nerd Font
|
|
style: Bold Italic
|
|
|
|
size: 7.5
|
|
|
|
schemes:
|
|
onedark: &onedark
|
|
primary:
|
|
background: '#282c34'
|
|
foreground: '#abb2bf'
|
|
|
|
normal:
|
|
black: '#131613'
|
|
red: '#e06c75'
|
|
green: '#98c379'
|
|
yellow: '#d19a66'
|
|
blue: '#61afef'
|
|
magenta: '#c678dd'
|
|
cyan: '#56b6c2'
|
|
white: '#abb2bf'
|
|
|
|
bright:
|
|
black: '#5c6370'
|
|
red: '#e06c75'
|
|
green: '#98c379'
|
|
yellow: '#d19a66'
|
|
blue: '#61afef'
|
|
magenta: '#c678dd'
|
|
cyan: '#56b6c2'
|
|
white: '#ffffff'
|
|
|
|
ayudark: &ayudark
|
|
primary:
|
|
background: '#0A0E14'
|
|
foreground: '#B3B1AD'
|
|
|
|
normal:
|
|
black: '#01060E'
|
|
red: '#EA6C73'
|
|
green: '#91B362'
|
|
yellow: '#F9AF4F'
|
|
blue: '#53BDFA'
|
|
magenta: '#FAE994'
|
|
cyan: '#90E1C6'
|
|
white: '#C7C7C7'
|
|
|
|
bright:
|
|
black: '#686868'
|
|
red: '#F07178'
|
|
green: '#C2D94C'
|
|
yellow: '#FFB454'
|
|
blue: '#59C2FF'
|
|
magenta: '#FFEE99'
|
|
cyan: '#95E6CB'
|
|
white: '#FFFFFF'
|
|
|
|
nord: &nord
|
|
primary:
|
|
background: '#2e3440'
|
|
foreground: '#d8dee9'
|
|
dim_foreground: '#a5abb6'
|
|
|
|
cursor:
|
|
text: '#2e3440'
|
|
cursor: '#d8dee9'
|
|
|
|
vi_mode_cursor:
|
|
text: '#2e3440'
|
|
cursor: '#d8dee9'
|
|
|
|
selection:
|
|
text: CellForeground
|
|
background: '#4c566a'
|
|
|
|
search:
|
|
matches:
|
|
foreground: CellBackground
|
|
background: '#88c0d0'
|
|
|
|
footer_bar:
|
|
background: '#434c5e'
|
|
foreground: '#d8dee9'
|
|
|
|
normal:
|
|
black: '#3b4252'
|
|
red: '#bf616a'
|
|
green: '#a3be8c'
|
|
yellow: '#ebcb8b'
|
|
blue: '#81a1c1'
|
|
magenta: '#b48ead'
|
|
cyan: '#88c0d0'
|
|
white: '#e5e9f0'
|
|
|
|
bright:
|
|
black: '#4c566a'
|
|
red: '#bf616a'
|
|
green: '#a3be8c'
|
|
yellow: '#ebcb8b'
|
|
blue: '#81a1c1'
|
|
magenta: '#b48ead'
|
|
cyan: '#8fbcbb'
|
|
white: '#eceff4'
|
|
|
|
dim:
|
|
black: '#373e4d'
|
|
red: '#94545d'
|
|
green: '#809575'
|
|
yellow: '#b29e75'
|
|
blue: '#68809a'
|
|
magenta: '#8c738c'
|
|
cyan: '#6d96a5'
|
|
white: '#aeb3bb'
|
|
|
|
colors: *nord
|
|
|
|
shell:
|
|
program: /usr/bin/zsh
|
|
args:
|
|
- --login
|
|
|
|
key_bindings:
|
|
- { key: V, mods: Control|Shift, action: Paste }
|
|
- { key: C, mods: Control|Shift, action: Copy }
|
|
- { key: L, mods: Control, action: ClearLogNotice }
|
|
- { key: L, mods: Control, chars: "\x0c" }
|
|
- { key: PageUp, mods: Shift, action: ScrollPageUp, mode: ~Alt }
|
|
- { key: PageDown, mods: Shift, action: ScrollPageDown, mode: ~Alt }
|
|
- { key: Home, mods: Shift, action: ScrollToTop, mode: ~Alt }
|
|
- { key: End, mods: Shift, action: ScrollToBottom, mode: ~Alt }
|