Skip to content
Snippets Groups Projects
Commit ba88a178 authored by Henrik Tjäder's avatar Henrik Tjäder
Browse files

Try to make diffs readable, change to pyright

parent 6076ec31
No related branches found
No related tags found
No related merge requests found
...@@ -392,3 +392,4 @@ problemdiskussionen ...@@ -392,3 +392,4 @@ problemdiskussionen
Checklista Checklista
systemutveckling systemutveckling
exekveringsmodell exekveringsmodell
bringup
...@@ -268,7 +268,8 @@ let g:PaperColor_Theme_Options = { ...@@ -268,7 +268,8 @@ let g:PaperColor_Theme_Options = {
\ 'override' : { \ 'override' : {
\ 'color00' : ['#FFFFFF', '231'], \ 'color00' : ['#FFFFFF', '231'],
\ 'color05' : ['#FFFFFF', '73'], \ 'color05' : ['#FFFFFF', '73'],
\ 'difftext_bg' : ['#FFFFFF', '25'], \ 'difftext_bg' : ['#60e1ff', ''],
\ 'difftext_fg' : ['#0f1d20', ''],
\ } \ }
\ } \ }
\ } \ }
...@@ -278,9 +279,19 @@ let g:PaperColor_Theme_Options = { ...@@ -278,9 +279,19 @@ let g:PaperColor_Theme_Options = {
"colorscheme molokai "colorscheme molokai
"colorscheme wikipedia "colorscheme wikipedia
colorscheme PaperColor colorscheme PaperColor
if &diff "if &diff
colorscheme sol "colorscheme sol
endif "endif
"highlight DiffAdd cterm=bold ctermfg=0 ctermbg=15 gui=none guifg=bg guibg=Red
"highlight DiffDelete cterm=bold ctermfg=0 ctermbg=15 gui=none guifg=bg guibg=Red
"highlight DiffChange cterm=bold ctermfg=0 ctermbg=15 gui=none guifg=bg guibg=Red
"highlight DiffText cterm=bold ctermfg=0 ctermbg=88 gui=none guifg=bg guibg=Red
" Fix the difficult-to-read default setting for diff text highlighting. The
" bang (!) is required since we are overwriting the DiffText setting. The highlighting
" for "Todo" also looks nice (yellow) if you don't like the "MatchParen" colors.
"highlight! link DiffText MatchParen
" handling setting and unsetting BAT_THEME for fzf.vim " handling setting and unsetting BAT_THEME for fzf.vim
augroup update_bat_theme augroup update_bat_theme
...@@ -786,7 +797,7 @@ let g:coc_global_extensions = [ ...@@ -786,7 +797,7 @@ let g:coc_global_extensions = [
\'coc-rust-analyzer', \'coc-rust-analyzer',
\'coc-markdownlint', \'coc-markdownlint',
\'coc-yaml', \'coc-yaml',
\'coc-python', \'coc-pyright',
\'coc-diagnostic', \'coc-diagnostic',
\'coc-vimtex'] \'coc-vimtex']
...@@ -836,6 +847,8 @@ let g:vimtex_fold_enabled = 1 ...@@ -836,6 +847,8 @@ let g:vimtex_fold_enabled = 1
" Need to manualy refresh folds with zx " Need to manualy refresh folds with zx
let g:vimtex_fold_manual = 1 let g:vimtex_fold_manual = 1
set fillchars=fold:\ set fillchars=fold:\
" No quickfix on warnings
let g:vimtex_quickfix_open_on_warning = 0
" Skim plugin via skim.vim / similar like fzf " Skim plugin via skim.vim / similar like fzf
map <C-f> <Esc><Esc>:Files!<CR> map <C-f> <Esc><Esc>:Files!<CR>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment