mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-01 05:16:31 +00:00
24 lines
415 B
Lua
24 lines
415 B
Lua
|
require("todo-comments").setup({
|
||
|
signs = false,
|
||
|
keywords = {
|
||
|
FIX = {
|
||
|
icon = "🩹",
|
||
|
},
|
||
|
TODO = {
|
||
|
icon = "✏️",
|
||
|
},
|
||
|
HACK = {
|
||
|
icon = "🙈",
|
||
|
},
|
||
|
PERF = {
|
||
|
icon = "🚀",
|
||
|
},
|
||
|
NOTE = {
|
||
|
icon = "📓",
|
||
|
},
|
||
|
WARNING = {
|
||
|
icon = "⚠️",
|
||
|
},
|
||
|
},
|
||
|
})
|