mirror of
https://github.com/Lissy93/dotfiles.git
synced 2025-01-25 13:28:35 +01:00
19 lines
343 B
VimL
19 lines
343 B
VimL
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
setlocal spell
|
|
setlocal expandtab
|
|
setlocal tabstop=4
|
|
setlocal shiftwidth=4
|
|
setlocal textwidth=99
|
|
|
|
" spellcheck
|
|
setlocal spell
|
|
|
|
" generate TOC quicker
|
|
nmap <buffer> <silent> <Leader>toc :GenTocGFM<CR>
|
|
|
|
let b:ale_fixers = ['trim_whitespace', 'remove_trailing_lines', 'prettier']
|