diff options
Diffstat (limited to 'dotfiles/vim/ftplugin/rust.lua')
-rw-r--r-- | dotfiles/vim/ftplugin/rust.lua | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/dotfiles/vim/ftplugin/rust.lua b/dotfiles/vim/ftplugin/rust.lua deleted file mode 100644 index 23a46f1..0000000 --- a/dotfiles/vim/ftplugin/rust.lua +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | -- TODO: suffixes, includes | ||
2 | |||
3 | vim.bo.expandtab = true | ||
4 | vim.bo.shiftwidth = 4 | ||
5 | vim.bo.softtabstop = 4 | ||
6 | vim.bo.textwidth = 99 | ||
7 | |||
8 | vim.opt_local.comments = { | ||
9 | "s0:/*!", | ||
10 | "ex:*/", | ||
11 | "s1:/*", | ||
12 | "mb:*", | ||
13 | "ex:*/", | ||
14 | ":///", | ||
15 | "://!", | ||
16 | "://", | ||
17 | } | ||
18 | vim.bo.commentstring = "// %s" | ||