mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
nvim/lua/user/plugins/editor.lua: adding todo-comments plugin
This commit is contained in:
parent
0ee8ee6d58
commit
dfac036414
1 changed files with 20 additions and 1 deletions
|
|
@ -14,6 +14,19 @@ return {
|
|||
virtual_symbol_suffix = '',
|
||||
}
|
||||
},
|
||||
{
|
||||
"folke/todo-comments.nvim",
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
opts = {
|
||||
signs = false,
|
||||
keywords = {
|
||||
TODO = { color = "warning" },
|
||||
},
|
||||
highlight = {
|
||||
keyword = 'fg',
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"pnx/mini.bufremove",
|
||||
opts = {
|
||||
|
|
@ -123,6 +136,7 @@ return {
|
|||
{
|
||||
"L3MON4D3/LuaSnip",
|
||||
lazy = true,
|
||||
build = "make install_jsregexp",
|
||||
dependencies = {
|
||||
{
|
||||
"rafamadriz/friendly-snippets",
|
||||
|
|
@ -151,4 +165,9 @@ return {
|
|||
require("luasnip").setup(opts)
|
||||
end,
|
||||
},
|
||||
-- {
|
||||
-- "m4xshen/hardtime.nvim",
|
||||
-- dependencies = { "MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim" },
|
||||
-- opts = {}
|
||||
-- },
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue