summaryrefslogtreecommitdiffstats
path: root/after/plugin/todo-comments.lua
diff options
context:
space:
mode:
Diffstat (limited to 'after/plugin/todo-comments.lua')
-rw-r--r--after/plugin/todo-comments.lua36
1 files changed, 0 insertions, 36 deletions
diff --git a/after/plugin/todo-comments.lua b/after/plugin/todo-comments.lua
deleted file mode 100644
index cf1c0a0..0000000
--- a/after/plugin/todo-comments.lua
+++ /dev/null
@@ -1,36 +0,0 @@
-local status_ok, todocomments = pcall(require, "todo-comments")
-if not status_ok then
- return
-end
-
-todocomments.setup {
- keywords = {
- FIX = {
- icon = "# ",
- alt = { "FIXME", "BUG" },
- },
- HACK = {
- icon = "* ",
- color = "warning",
- },
- WARN = {
- icon = "! ",
- color = "warning",
- alt = { "WARNING", "XXX" },
- },
- NOTE = {
- icon = "i ",
- color = "hint",
- alt = { "INFO", "TODO" },
- },
- PERF = {
- icon = "@ ",
- alt = { "OPTIM", "PERFORMANCE", "OPTIMIZE" },
- },
- TEST = {
- icon = "@ ",
- color = "test",
- alt = { "TESTING", "PASSED", "FAILED" },
- },
- },
-}