Update terminal colors, vim and alacritty
This commit is contained in:
parent
85b776daf0
commit
92b09b3a8b
2 changed files with 10 additions and 3 deletions
|
@ -174,8 +174,8 @@ draw_bold_text_with_bright_colors: true
|
||||||
colors:
|
colors:
|
||||||
# Default colors
|
# Default colors
|
||||||
primary:
|
primary:
|
||||||
background: '0x191919'
|
background: '0x1f1f1f'
|
||||||
foreground: '0xefefef'
|
foreground: '0xd7d7d7'
|
||||||
|
|
||||||
# Bright and dim foreground colors
|
# Bright and dim foreground colors
|
||||||
#
|
#
|
||||||
|
|
|
@ -35,8 +35,14 @@ match WhitespaceEOL /\s\+\%#\@<!$/
|
||||||
nnoremap <C-k> :let _s=@/<Bar>:%s/\s\+$//e<Bar>:let @/=_s<Bar><CR>
|
nnoremap <C-k> :let _s=@/<Bar>:%s/\s\+$//e<Bar>:let @/=_s<Bar><CR>
|
||||||
|
|
||||||
" Much better with Tomorrow Night Bright color theme set in alacritty
|
" Much better with Tomorrow Night Bright color theme set in alacritty
|
||||||
set background=light
|
set background=dark
|
||||||
|
highlight Search ctermfg=Black
|
||||||
|
highlight Comment ctermfg=Grey
|
||||||
highlight SignColumn ctermbg=236
|
highlight SignColumn ctermbg=236
|
||||||
|
highlight LineNr ctermfg=244
|
||||||
|
highlight LineNr ctermbg=232
|
||||||
|
highlight Folded ctermbg=DarkGreen
|
||||||
|
highlight Folded ctermfg=Black
|
||||||
|
|
||||||
" ALE colors
|
" ALE colors
|
||||||
highlight ALEWarning ctermbg=Yellow
|
highlight ALEWarning ctermbg=Yellow
|
||||||
|
@ -54,6 +60,7 @@ autocmd FileType rust nmap gd <Plug>(rust-def)
|
||||||
autocmd FileType rust nmap gs <Plug>(rust-def-split)
|
autocmd FileType rust nmap gs <Plug>(rust-def-split)
|
||||||
autocmd FileType rust nmap gx <Plug>(rust-def-vertical)
|
autocmd FileType rust nmap gx <Plug>(rust-def-vertical)
|
||||||
autocmd FileType rust nmap <leader>gd <Plug>(rust-doc)
|
autocmd FileType rust nmap <leader>gd <Plug>(rust-doc)
|
||||||
|
autocmd FileType rust set number
|
||||||
|
|
||||||
" Toggles on different plugins/modes
|
" Toggles on different plugins/modes
|
||||||
noremap <F1> :ToggleMouse<CR>
|
noremap <F1> :ToggleMouse<CR>
|
||||||
|
|
Loading…
Add table
Reference in a new issue