feat(vim-plugins): Move some behavior away from plugins

indentLine is archived since last year and with that, there are no
further updates.  But the project's GitHub states that the same behavior
can be achieved with Vim's listchars, so this patch does that.
This commit is contained in:
Dionisio E Alonso 2024-04-03 13:58:10 -03:00
parent 3b4ddd41ba
commit e839064e12
2 changed files with 2 additions and 6 deletions

View File

@ -13,7 +13,7 @@ set cursorline
set tabstop=4 shiftwidth=4
set softtabstop=-1 " Negative value sets to use "shiftwidth" instead
set list listchars=tab:→ ,trail
set list listchars=tab:→ ,trail,lead
let &colorcolumn = join(range(80+1, 256), ',')
set clipboard+=unnamed,unnamedplus
@ -34,8 +34,6 @@ endif
" Extras
let g:vimsyn_embed = 'Pl'
let g:indentLine_char = '⦙'
let g:indentLine_leadingSpaceChar = '·'
let g:indentLine_leadingSpaceEnabled = v:true
runtime! **/lsp/init.lua

View File

@ -14,7 +14,7 @@ set cursorline
set tabstop=4 shiftwidth=4
set softtabstop=-1 " Negative value sets to use "shiftwidth" instead
set list listchars=tab:→ ,trail
set list listchars=tab:→ ,trail,lead
let &colorcolumn = join(range(80+1, 256), ',')
set directory^=~/.local/share/vim/swap//
@ -36,8 +36,6 @@ endif
" Extras
let g:vimsyn_embed = 'Pl'
let g:indentLine_char = '⦙'
let g:indentLine_leadingSpaceChar = '·'
let g:indentLine_leadingSpaceEnabled = v:true
runtime! lsp.vim