Skip to content

Commit

Permalink
fix(nvim-toggler): fix default binding
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Apr 1, 2024
1 parent 9964c6f commit f2ddc4d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lua/astrocommunity/utility/nvim-toggler/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ return {
"AstroNvim/astrocore",
opts = {
mappings = {
n = {
["<Leader>i"] = { desc = "Toggle CursorWord" },
},
n = { ["<Leader>i"] = { function() require("nvim-toggler").toggle() end, desc = "Toggle CursorWord" } },
v = { ["<Leader>i"] = { function() require("nvim-toggler").toggle() end, desc = "Toggle CursorWord" } },
},
},
},
},

opts = {},
opts = {
remove_default_keybinds = true,
},
}

0 comments on commit f2ddc4d

Please sign in to comment.