Specifiy fixers for Markdown

This commit is contained in:
wunewww 2024-05-05 17:19:11 +08:00
parent bf5a7f83d6
commit 58c1b6cbd8
2 changed files with 6 additions and 0 deletions

View File

@ -14,6 +14,8 @@ This is wuniu's vim settings. This file describes wuniu's editing experience.
After installing / adding a new pack with `doc/` inside. Generate doc tags After installing / adding a new pack with `doc/` inside. Generate doc tags
using `packloadall | silent! helptags ALL`, which will regenerate all tags of docs. using `packloadall | silent! helptags ALL`, which will regenerate all tags of docs.
[link]
## Reloading `vimrc` File ## Reloading `vimrc` File
After editing vimrc file, one can execute it by `:so $MYVIMRC`. But this will After editing vimrc file, one can execute it by `:so $MYVIMRC`. But this will

4
ftplugin/markdown.vim Normal file
View File

@ -0,0 +1,4 @@
" markdown filetype setttings
"
" ale fixer and lsp etc.
let b:ale_fixers = ['pandoc', 'remove_trailing_lines', 'trim_whitespace']