comparison dot_config/nvim/init.vim @ 315:7220aa431ce0

Remove the ALE plugin, switching to LSP + efm
author Zeger Van de Vannet <zegervdv@me.com>
date Thu, 17 Dec 2020 14:57:05 +0100
parents 49b61215e3d0
children 7d73e664f702
comparison
equal deleted inserted replaced
314:205d82eb93b4 315:7220aa431ce0
128 Plug 'zegervdv/nvcode-color-schemes.vim' 128 Plug 'zegervdv/nvcode-color-schemes.vim'
129 129
130 "Tcl 130 "Tcl
131 Plug 'vim-scripts/tcl.vim--smithfield-indent', { 'for': 'tcl'} 131 Plug 'vim-scripts/tcl.vim--smithfield-indent', { 'for': 'tcl'}
132 132
133 Plug 'dense-analysis/ale'
134 Plug 'sbdchd/neoformat' 133 Plug 'sbdchd/neoformat'
135 134
136 Plug 'Glench/Vim-Jinja2-Syntax' 135 Plug 'Glench/Vim-Jinja2-Syntax'
137 136
138 if s:darwin 137 if s:darwin
1218 augroup END 1217 augroup END
1219 " }}} 1218 " }}}
1220 " GDB {{{ 1219 " GDB {{{
1221 let g:nvimgdb_disable_start_keymaps = 1 1220 let g:nvimgdb_disable_start_keymaps = 1
1222 " }}} 1221 " }}}
1223 " ALE {{{
1224 let g:ale_virtualtext_cursor=1
1225 " augroup fmt
1226 " autocmd!
1227 " autocmd BufWritePre * try | undojoin | Neoformat | catch /^Vim\%((\a\+)\)\=:E790/ | finally | silent Neoformat | endtry
1228 " augroup END
1229 " }}}
1230 " Indents {{{ 1222 " Indents {{{
1231 let g:indentLine_char = '|' 1223 let g:indentLine_char = '|'
1232 " }}} 1224 " }}}
1233 " }}} 1225 " }}}
1234 1226