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 }, }