Skip to content

Commit

Permalink
fix: added builtin plugins to config
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Apr 28, 2021
1 parent b8ed0e8 commit 6e461ca
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lua/which-key/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@ M.namespace = vim.api.nvim_create_namespace("WhichKey")
local defaults = {
builtin = true, -- register a list of builtin key mappings
icons = { breadcrumb = "»", separator = "", group = "+" },
plugins = { marks = true, registers = true, ["text-objects"] = true },
plugins = {
marks = true,
registers = true,
["text-objects"] = true,
operators = true,
motions = true,
},
window = {
border = "none", -- none, single, double, shadow
position = "bottom", -- bottom, top
Expand Down

0 comments on commit 6e461ca

Please sign in to comment.