summaryrefslogtreecommitdiffstats
path: root/dotfiles/vim/ftplugin/rust.lua
blob: 23a46f1d84364d4a7b9bb18a3bb03ac138982d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- TODO: suffixes, includes

vim.bo.expandtab = true
vim.bo.shiftwidth = 4
vim.bo.softtabstop = 4
vim.bo.textwidth = 99

vim.opt_local.comments = {
	"s0:/*!",
	"ex:*/",
	"s1:/*",
	"mb:*",
	"ex:*/",
	":///",
	"://!",
	"://",
}
vim.bo.commentstring = "// %s"