diff options
-rw-r--r-- | .config/nvim/after/ftplugin/c.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/after/ftplugin/c.lua b/.config/nvim/after/ftplugin/c.lua index 2c378f4..23262f2 100644 --- a/.config/nvim/after/ftplugin/c.lua +++ b/.config/nvim/after/ftplugin/c.lua @@ -1,6 +1,6 @@ vim.bo.commentstring = '/* %s */' -vim.keymap.set('v', '<localleader>=', ":'<'>!clang-format -style=file -<CR>", { +vim.keymap.set('v', '<localleader>=', ":'<'>!clang-format -style=file<CR>", { desc = 'Format the current selection with Clang Format', }) |