diff options
author | christianchiarulli <[email protected]> | 2021-07-09 21:34:12 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-09 21:34:12 -0400 |
commit | 4ff04e31f0216278f0549b5c493e153d66759e00 (patch) | |
tree | 9cfce5e41503beb0d66448eba89328198a921c62 /lua/lv-which-key/init.lua | |
parent | b8182d5aeecd50ad6a7d4f5b9b1a8ccbd8bbad02 (diff) |
config refactor
Diffstat (limited to 'lua/lv-which-key/init.lua')
-rw-r--r-- | lua/lv-which-key/init.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/lv-which-key/init.lua b/lua/lv-which-key/init.lua index 6ae12dd3..6189aa50 100644 --- a/lua/lv-which-key/init.lua +++ b/lua/lv-which-key/init.lua @@ -188,10 +188,10 @@ local mappings = { }, } -if O.plugin.ts_playground.active then - vim.api.nvim_set_keymap("n", "<leader>Th", ":TSHighlightCapturesUnderCursor<CR>", { noremap = true, silent = true }) - mappings[""] = "Highlight Capture" -end +-- if O.plugin.ts_playground.active then +-- vim.api.nvim_set_keymap("n", "<leader>Th", ":TSHighlightCapturesUnderCursor<CR>", { noremap = true, silent = true }) +-- mappings[""] = "Highlight Capture" +-- end if O.plugin.zen.active then vim.api.nvim_set_keymap("n", "<leader>z", ":ZenMode<CR>", { noremap = true, silent = true }) |