aboutsummaryrefslogtreecommitdiff
path: root/common/nvim/after/ftplugin/c.lua
diff options
context:
space:
mode:
Diffstat (limited to 'common/nvim/after/ftplugin/c.lua')
-rwxr-xr-xcommon/nvim/after/ftplugin/c.lua9
1 files changed, 0 insertions, 9 deletions
diff --git a/common/nvim/after/ftplugin/c.lua b/common/nvim/after/ftplugin/c.lua
deleted file mode 100755
index 6af8a5c..0000000
--- a/common/nvim/after/ftplugin/c.lua
+++ /dev/null
@@ -1,9 +0,0 @@
--- Fix C filetype comments
-vim.api.nvim_create_autocmd("Filetype", {
- pattern = "c",
- callback = function()
- vim.bo.commentstring = "//%s"
- end,
- group = comment_augroup,
-})
-