summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugin/filetypes.lua15
1 files changed, 11 insertions, 4 deletions
diff --git a/plugin/filetypes.lua b/plugin/filetypes.lua
index 1725599..438eeae 100644
--- a/plugin/filetypes.lua
+++ b/plugin/filetypes.lua
@@ -6,10 +6,10 @@ local cmd = vim.cmd
local u = require('utils')
u.create_augroup({
- { 'BufRead,BufNewFile', '/tmp/nail-*', 'setlocal', 'ft=mail' },
- { 'BufRead,BufNewFile', '*s-nail-*', 'setlocal', 'ft=mail' },
- { 'BufRead,BufNewFile', '*mutt-*', 'setlocal', 'ft=mail' },
- { 'BufRead', '/tmp/*mutt-*', 'setlocal', 'tw=72' },
+ { 'BufRead,BufNewFile', '/tmp/nail-*', 'setlocal', 'ft=mail' },
+ { 'BufRead,BufNewFile', '*s-nail-*', 'setlocal', 'ft=mail' },
+ { 'BufRead,BufNewFile', '*mutt-*', 'setlocal', 'ft=mail' },
+ { 'BufRead', '/tmp/*mutt-*', 'setlocal', 'tw=72' },
}, 'ftmail')
-- Autoremove unwanted whitespaces
@@ -17,5 +17,12 @@ cmd [[
au BufRead,BufNewFile *mutt-* setfiletype mail
]]
+vim.filetype.add {
+ extension = {
+ h = "c",
+ scheme = "scheme",
+ },
+}
+
-- Add in the following like to auto remove empty lines
-- au BufWritePre * %s/\s\+$//e