Skip to content

Commit

Permalink
feat(editing-support): adds unblevable/quick-scope
Browse files Browse the repository at this point in the history
  • Loading branch information
axelcalixte committed Feb 24, 2025
1 parent baaaef1 commit 3ee2552
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lua/astrocommunity/editing-support/quick-scope/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# quick-scope

Visual guides on current line for f and t motions.

**Repository:** <https://github.com/unblevable/quick-scope>
13 changes: 13 additions & 0 deletions lua/astrocommunity/editing-support/quick-scope/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
return {
{
"unblevable/quick-scope",
keys = { "f", "F", "t", "T" },
dependencies = {
"AstroNvim/astrocore",
opts = function(_, opts)
if not opts.mappings then opts.mappings = {} end
opts.options.g["qs_highlight_on_keys"] = { "f", "F", "t", "T" }
end,
},
},
}

0 comments on commit 3ee2552

Please sign in to comment.