From 7351bf05c8cd68029ceb61988c8c17ccfa724dcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20CHLON?= Date: Wed, 17 Jan 2024 03:09:52 +0100 Subject: [PATCH] fix(harpoon): change word terminal to term (#725) --- lua/astrocommunity/motion/harpoon/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/astrocommunity/motion/harpoon/init.lua b/lua/astrocommunity/motion/harpoon/init.lua index 830e240bc..97dcd10b8 100644 --- a/lua/astrocommunity/motion/harpoon/init.lua +++ b/lua/astrocommunity/motion/harpoon/init.lua @@ -1,5 +1,5 @@ local prefix = "" -local term_string = vim.fn.exists "$TMUX" == 1 and "tmux" or "terminal" +local term_string = vim.fn.exists "$TMUX" == 1 and "tmux" or "term" local maps = { n = {} } local icon = vim.g.icons_enabled and "󱡀 " or "" maps.n[prefix] = { desc = icon .. "Harpoon" }