aboutsummaryrefslogtreecommitdiff
path: root/common/nvim/after/ftplugin/c.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2025-09-24 02:56:53 +0200
committersrdusr <trevorgray@srdusr.com>2025-09-24 02:56:53 +0200
commit0f6cee92221dc517bd756083e260dd9373851b82 (patch)
treec6d929fa5832d17a2d1fe3c85744bae7621ed447 /common/nvim/after/ftplugin/c.lua
parent3cf613ec7c90ab4933728b0f19e49b0c955c17bb (diff)
downloaddotfiles-0f6cee92221dc517bd756083e260dd9373851b82.tar.gz
dotfiles-0f6cee92221dc517bd756083e260dd9373851b82.zip
Moved files to common/
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,
-})
-