diff options
author | tafryn <[email protected]> | 2021-07-01 18:06:07 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-01 21:06:07 -0400 |
commit | 9bb4f8a085644914c79343b48c808509311ee203 (patch) | |
tree | 96ad3e89c298f103d5e5ce0cd0af38d3210ce41e | |
parent | f793797fa800c4707ba5361314929af3f7f28656 (diff) |
Fix incorrect variable name (#579)
-rw-r--r-- | lua/lv-which-key/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lv-which-key/init.lua b/lua/lv-which-key/init.lua index 45f9958f..519e6dd4 100644 --- a/lua/lv-which-key/init.lua +++ b/lua/lv-which-key/init.lua @@ -271,7 +271,7 @@ if O.plugin.lazygit.active then {noremap = true, silent = true}) mappings["gg"] = "LazyGit" end -if O.plugin.telescope_project then +if O.plugin.telescope_project.active then -- open projects vim.api.nvim_set_keymap('n', '<leader>p', ":lua require'telescope'.extensions.project.project{}<CR>", |