chore: Update configs
parent
772c5a12de
commit
ffeecb437d
|
@ -3,9 +3,6 @@ import:
|
||||||
|
|
||||||
font:
|
font:
|
||||||
normal:
|
normal:
|
||||||
family: Agave
|
family: Cascadia Code
|
||||||
style: Regular
|
style: Regular
|
||||||
bold:
|
size: 12.0
|
||||||
family: Agave
|
|
||||||
style: Bold
|
|
||||||
size: 16
|
|
||||||
|
|
|
@ -24,6 +24,14 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"kitty": {
|
||||||
|
"paths": [
|
||||||
|
{
|
||||||
|
"internal": "data/kitty/kitty.conf",
|
||||||
|
"external": "~/.config/kitty/kitty.conf"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"bat": {
|
"bat": {
|
||||||
"paths": [
|
"paths": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
font_family Cascadia Code
|
||||||
|
font_size 12.0
|
||||||
|
|
||||||
|
# https://github.com/dexpota/kitty-themes
|
||||||
|
foreground #979eab
|
||||||
|
background #282c34
|
||||||
|
cursor #cccccc
|
||||||
|
color0 #282c34
|
||||||
|
color1 #e06c75
|
||||||
|
color2 #98c379
|
||||||
|
color3 #e5c07b
|
||||||
|
color4 #61afef
|
||||||
|
color5 #be5046
|
||||||
|
color6 #56b6c2
|
||||||
|
color7 #979eab
|
||||||
|
color8 #393e48
|
||||||
|
color9 #d19a66
|
||||||
|
color10 #56b6c2
|
||||||
|
color11 #e5c07b
|
||||||
|
color12 #61afef
|
||||||
|
color13 #be5046
|
||||||
|
color14 #56b6c2
|
||||||
|
color15 #abb2bf
|
||||||
|
selection_foreground #282c34
|
||||||
|
selection_background #979eab
|
|
@ -32,6 +32,9 @@ let g:go_version_warning=0
|
||||||
let g:go_gopls_gofumpt=1
|
let g:go_gopls_gofumpt=1
|
||||||
let g:lightline={'colorscheme':'onedark'}
|
let g:lightline={'colorscheme':'onedark'}
|
||||||
|
|
||||||
|
" coc-nvim
|
||||||
|
command! -nargs=0 Prettier :CocCommand prettier.formatFile
|
||||||
|
|
||||||
" vim-plug
|
" vim-plug
|
||||||
" https://github.com/junegunn/vim-plug
|
" https://github.com/junegunn/vim-plug
|
||||||
call plug#begin()
|
call plug#begin()
|
||||||
|
@ -46,6 +49,7 @@ Plug 'joshdick/onedark.vim'
|
||||||
|
|
||||||
" Languages
|
" Languages
|
||||||
Plug 'fatih/vim-go', {'tag': '*'}
|
Plug 'fatih/vim-go', {'tag': '*'}
|
||||||
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue