summaryrefslogtreecommitdiff
path: root/filetype.lua
blob: 5ec6e1dde8356da7f3bd8301351368dd3b9a70e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--
-- Mainly filetype settings
--

local cmd = vim.cmd

-- Autoremove unwanted whitespaces
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