Add: first import
This commit is contained in:
commit
82641f61be
23 changed files with 800 additions and 0 deletions
16
lua/plugins/comments.lua
Normal file
16
lua/plugins/comments.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
{
|
||||
"folke/todo-comments.nvim",
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
config = function()
|
||||
require("todo-comments").setup({
|
||||
keywords = {
|
||||
FIX = { icon = " ", color = "error", alt = { "BUG", "FIXME" } },
|
||||
TODO = { icon = " ", color = "info" },
|
||||
HACK = { icon = " ", color = "warning" },
|
||||
NOTE = { icon = " ", color = "hint", alt = { "INFO" } },
|
||||
}
|
||||
})
|
||||
end,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue