markdown: enable autowriteall for markdown files
- Enables `autowriteall` for markdown files (pandoc filteype, as I use the vim-pandoc plugin). - Modify the rules to ignore spell files. Co-Authored-by: iGor milhit <igor@milhit.ch>main
parent
cbd7159754
commit
e4a0a7b220
|
@ -5,8 +5,9 @@ autoload
|
||||||
# netrw
|
# netrw
|
||||||
.netrwhist
|
.netrwhist
|
||||||
|
|
||||||
# spell *.spl
|
# spell
|
||||||
spell/
|
*.spl
|
||||||
|
spell/*
|
||||||
|
|
||||||
tags
|
tags
|
||||||
test.sh
|
test.sh
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
# `vim-plug` plugins
|
||||||
|
plugged/*
|
||||||
|
autoload
|
||||||
|
|
||||||
|
# netrw
|
||||||
|
.netrwhist
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
|
# spell *.spl
|
||||||
|
=======
|
||||||
|
# spell
|
||||||
|
*.spl
|
||||||
|
>>>>>>> c47fcd7 (gitignore: try to improve the spell rule)
|
||||||
|
spell/*
|
||||||
|
|
||||||
|
tags
|
||||||
|
test.sh
|
||||||
|
.luarc.json
|
||||||
|
nvim
|
||||||
|
lazy-lock.json
|
|
@ -0,0 +1,5 @@
|
||||||
|
-- Specific settings for markdown files (pandoc filetype)
|
||||||
|
-- Enable the autowrite feature for all commands
|
||||||
|
-- See :h awa
|
||||||
|
|
||||||
|
vim.opt.awa=true
|
Loading…
Reference in New Issue