diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2024-12-31 18:44:37 -0800 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2025-01-01 21:08:48 -0800 |
commit | 098d8e097eeff5d381fb352478bd959ba4d39052 (patch) | |
tree | e9618a1942d016b6bade2a00bb92a6b9f8806f98 | |
parent | accdb06541f9a7fa83536eb885559b3944d7c111 (diff) |
upstream colorscheme seems changed fold title to yellow which is more readable, so no need to customize by myself
-rw-r--r-- | home/xyz/.config/nvim/init.vim | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/home/xyz/.config/nvim/init.vim b/home/xyz/.config/nvim/init.vim index cb19aff4..10083976 100644 --- a/home/xyz/.config/nvim/init.vim +++ b/home/xyz/.config/nvim/init.vim @@ -53,15 +53,6 @@ function! Autocmd_set_fenc() abort endif endfunction -" https://github.com/tinted-theming/base16-vim?tab=readme-ov-file#customization -function! s:base16_customize() abort - " make fold title more contrast and readable, by reverting some changes from: - " https://github.com/tinted-theming/base16-vim/pull/43/files - " tested with base16-tomorrow-night theme - call Tinted_Hi("FoldColumn", g:tinted_gui0C, g:tinted_gui01, g:tinted_cterm0C, g:tinted_cterm01, "", "") - call Tinted_Hi("Folded", g:tinted_gui03, g:tinted_gui01, g:tinted_cterm03, g:tinted_cterm01, "", "") -endfunction - function! Md_toggle_fold() abort " &markdown_folding won't work because markdown_folding is not an option " two ways to check if g:markdown_folding variable exists and is true: @@ -109,8 +100,6 @@ augroup mycmd "" https://stackoverflow.com/q/158968/9008720 " or use setlocal cc= autocmd FileType mail,gitcommit setlocal colorcolumn=72 - " https://github.com/tinted-theming/base16-vim?tab=readme-ov-file#customization - autocmd ColorScheme * call s:base16_customize() " open file readonly if it already been open " nvim seems change default from '' to 'e', but I prefer 'o' " :h w325 e325 SwapExists swapchoice default-autocmds |