diff --git a/lua/weeheavy/plugins/ccc.lua b/lua/weeheavy/plugins/ccc.lua new file mode 100644 index 0000000..efcfc48 --- /dev/null +++ b/lua/weeheavy/plugins/ccc.lua @@ -0,0 +1,18 @@ +-- File system operations for nerds +-- https://github.com/uga-rosa/ccc.nvim +return { + "uga-rosa/ccc.nvim", + config = function() + local ccc = require("ccc") + local mapping = ccc.mapping + ccc.setup({ + + -- Your preferred settings + -- Example: enable highlighter + highlighter = { + auto_enable = true, + lsp = true, + }, + }) + end, +}