From fbdcb21df79dc7a35795cd084cac2e2033d750b9 Mon Sep 17 00:00:00 2001 From: Stefan Date: Fri, 2 Aug 2024 10:46:10 +0200 Subject: [PATCH] feat: TodoTelescope --- init.lua | 9 +++++++++ lua/custom/plugins/todo-comments.lua | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 1a65037..f609f08 100644 --- a/init.lua +++ b/init.lua @@ -615,6 +615,15 @@ require('lazy').setup { return '%2l:%-2v' end + -- { + -- cursor = { + -- enable = false + -- }, + -- scroll = { + -- enable = false + -- }, + -- } + -- ... and there is more! -- Check out: https://github.com/echasnovski/mini.nvim end, diff --git a/lua/custom/plugins/todo-comments.lua b/lua/custom/plugins/todo-comments.lua index 97c9cc9..0be8227 100644 --- a/lua/custom/plugins/todo-comments.lua +++ b/lua/custom/plugins/todo-comments.lua @@ -3,10 +3,10 @@ return { 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, - opts = { signs = false }, config = function () require('todo-comments').setup() vim.keymap.set('n', 'st', 'TodoTelescope', { desc = 'Open all todos' }) end, + opts = { signs = false }, }