Skip to content

Commit

Permalink
add quick-scope plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
pandanoir authored Jan 10, 2025
1 parent df9c463 commit 446a4bd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion nvim/lua/plugins/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ return {
end,
event = 'FilterWritePre',
opts = {
nearest_only = true
nearest_only = true,
},
},
{
Expand Down Expand Up @@ -236,4 +236,10 @@ return {
dependencies = { 'nvim-lua/plenary.nvim' },
config = true,
},
{
'unblevable/quick-scope',
init = function()
vim.keymap.set('n', '<leader>tq', '<cmd>QuickScopeToggle<cr>', { desc = 'toggle quick-scope' })
end,
},
}

0 comments on commit 446a4bd

Please sign in to comment.