Compare commits

..

No commits in common. "306d54c05d1d87620bdd80078479f1d79e837365" and "c9703e735b54ba1623be3b84430f321f9c6ef501" have entirely different histories.

2 changed files with 35 additions and 4 deletions

View File

@ -5,6 +5,9 @@ shell:
- -l - -l
window: window:
dynamic_title: true dynamic_title: true
dimensions:
columns: 0
lines: 0
padding: padding:
x: 2 x: 2
y: 2 y: 2
@ -37,7 +40,7 @@ debug:
bell: bell:
animation: EaseOutExpo animation: EaseOutExpo
duration: 0 duration: 0
color: "#ffffff" color: '0xffffff'
mouse_bindings: mouse_bindings:
- mouse: Middle - mouse: Middle
action: PasteSelection action: PasteSelection
@ -63,6 +66,7 @@ selection:
semantic_escape_chars: ',│`|:"'' ()[]{}<>' semantic_escape_chars: ',│`|:"'' ()[]{}<>'
save_to_clipboard: false save_to_clipboard: false
cursor: cursor:
style: Block
unfocused_hollow: true unfocused_hollow: true
live_config_reload: true live_config_reload: true
enable_experimental_conpty_backend: false enable_experimental_conpty_backend: false
@ -370,5 +374,31 @@ key_bindings:
- key: NumpadEnter - key: NumpadEnter
chars: "\n" chars: "\n"
import: # Colors (Darcula)
- ~/.config/alacritty/themes/themes/tender.yaml colors:
# Default colors
primary:
background: '0x282a36'
foreground: '0xf8f8f2'
# Normal colors
normal:
black: '0x000000'
red: '0xff5555'
green: '0x50fa7b'
yellow: '0xf1fa8c'
blue: '0xcaa9fa'
magenta: '0xff79c6'
cyan: '0x8be9fd'
white: '0xbfbfbf'
# Bright colors
bright:
black: '0x282a35'
red: '0xff6e67'
green: '0x5af78e'
yellow: '0xf4f99d'
blue: '0xcaa9fa'
magenta: '0xff92d0'
cyan: '0x9aedfe'
white: '0xe6e6e6'

3
vimrc
View File

@ -115,7 +115,8 @@ let g:vim_markdown_folding_disabled = 1
let g:vim_markdown_frontmatter = 1 let g:vim_markdown_frontmatter = 1
let g:yapf_style = "pep8" let g:yapf_style = "pep8"
colorscheme dracula packadd! dichromatic
colorscheme dichromatic
hi Comment cterm=NONE ctermfg=DarkRed gui=NONE guifg=red2 hi Comment cterm=NONE ctermfg=DarkRed gui=NONE guifg=red2
hi minimapCursor ctermbg=59 ctermfg=228 guibg=#5F5F5F guifg=#FFFF87 hi minimapCursor ctermbg=59 ctermfg=228 guibg=#5F5F5F guifg=#FFFF87