mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-01 03:36:28 +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 = "⚠️",
|
|
},
|
|
},
|
|
})
|