chore(config): update alacritty and nvim config
parent
c051836cee
commit
3b065eeac6
|
@ -0,0 +1,14 @@
|
|||
import:
|
||||
- ~/.config/alacritty/one-dark.yml
|
||||
|
||||
font:
|
||||
normal:
|
||||
family: Iosevka
|
||||
style: Regular
|
||||
bold:
|
||||
family: Iosevka
|
||||
style: Bold
|
||||
italic:
|
||||
family: Iosevka
|
||||
style: Italic
|
||||
size: 12
|
|
@ -0,0 +1,22 @@
|
|||
# https://github.com/alacritty/alacritty/wiki/Color-schemes
|
||||
# Colors (One Dark - https://github.com/atom/atom/tree/master/packages/one-dark-syntax)
|
||||
colors:
|
||||
primary:
|
||||
background: "#282c34"
|
||||
foreground: "#abb2bf"
|
||||
cursor:
|
||||
text: CellBackground
|
||||
cursor: "#528bff" # syntax-cursor-color
|
||||
selection:
|
||||
text: CellForeground
|
||||
background: "#3e4451" # syntax-selection-color
|
||||
normal:
|
||||
black: "#5c6370" # mono-3
|
||||
red: "#e06c75" # red 1
|
||||
green: "#98c379"
|
||||
yellow: "#e5c07b" # orange 2
|
||||
blue: "#61afef"
|
||||
magenta: "#c678dd"
|
||||
cyan: "#56b6c2"
|
||||
white: "#828997" # mono-2
|
||||
|
|
@ -8,6 +8,14 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"alacritty": {
|
||||
"paths": [
|
||||
{
|
||||
"internal": "data/alacritty",
|
||||
"external": "~/.config/alacritty"
|
||||
}
|
||||
]
|
||||
},
|
||||
"bat": {
|
||||
"paths": [
|
||||
{
|
||||
|
|
|
@ -39,6 +39,7 @@ Plug 'sheerun/vim-polyglot'
|
|||
Plug 'preservim/nerdtree'
|
||||
Plug 'machakann/vim-sandwich'
|
||||
Plug 'itchyny/lightline.vim'
|
||||
Plug 'tpope/vim-fugitive'
|
||||
|
||||
" Colorschemes
|
||||
Plug 'joshdick/onedark.vim'
|
||||
|
|
Loading…
Reference in New Issue