style(nvim): run stylua

This commit is contained in:
Oliver Davies 2023-09-04 11:05:13 +01:00
parent 62765d25aa
commit 3614d71a2c
17 changed files with 86 additions and 64 deletions
config/neovim/after/plugin

View file

@ -5,10 +5,22 @@ end
todo_comments.setup {}
local nmap = require "opdavies.keymap".nmap
local nmap = require("opdavies.keymap").nmap
nmap { "[t", function() todo_comments.jump_prev() end, { desc = "Previous todo comment" }}
nmap { "]t", function() todo_comments.jump_next() end, { desc = "Next todo comment" }}
nmap {
"[t",
function()
todo_comments.jump_prev()
end,
{ desc = "Previous todo comment" },
}
nmap {
"]t",
function()
todo_comments.jump_next()
end,
{ desc = "Next todo comment" },
}
nmap { "<leader>tt", "<cmd>TodoTelescope<cr>" }
nmap { "<leader>tq", "<cmd>TodoQuickFix<cr>" }