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>
kickstart
iGor milhit 2023-12-08 14:25:14 +01:00
parent 481b13b37b
commit cda7ff36e3
Signed by: igor
GPG Key ID: 692D97C3D0228A99
3 changed files with 28 additions and 2 deletions

5
.gitignore vendored
View File

@ -5,8 +5,9 @@ autoload
# netrw
.netrwhist
# spell *.spl
spell/
# spell
*.spl
spell/*
tags
test.sh

20
.gitignore.orig 100644
View File

@ -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

View File

@ -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