We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fd7142 commit c63bdfeCopy full SHA for c63bdfe
home/nvim/lua/plugins.lua
@@ -29,6 +29,26 @@ local function inject_all(specs)
29
end
30
31
return inject_all({
32
+ {
33
+ "ColinKennedy/cursor-text-objects.nvim",
34
+ lazy = false,
35
+ config = function()
36
+ vim.keymap.set(
37
+ { "o", "x" },
38
+ "[",
39
+ "<Plug>(cursor-text-objects-up)",
40
+ { desc = "Run from your current cursor to the end of the text-object." }
41
+ )
42
43
44
+ "]",
45
+ "<Plug>(cursor-text-objects-down)",
46
47
48
+ end,
49
+ version = "v1.*",
50
+ },
51
+
52
{
53
"saghen/blink.cmp",
54
lazy = false, -- it handles itself and is an integral part anyhow
0 commit comments