diff options
Diffstat (limited to '.config/nvim/after/ftplugin/mail.lua')
| -rw-r--r-- | .config/nvim/after/ftplugin/mail.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.config/nvim/after/ftplugin/mail.lua b/.config/nvim/after/ftplugin/mail.lua new file mode 100644 index 0000000..4da9c4a --- /dev/null +++ b/.config/nvim/after/ftplugin/mail.lua @@ -0,0 +1,8 @@ +local setlocal = vim.opt_local + +setlocal.number = false +setlocal.relativenumber = false +setlocal.textwidth = 80 +-- setlocal.formatoptions:append { "w" } +setlocal.formatoptions = "tcjlw" +setlocal.formatoptions:remove { "o" } |
