summaryrefslogtreecommitdiff
path: root/nvim/lua
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2025-06-29 21:27:22 -0500
committerzachir <zachir@librem.one>2025-06-29 21:27:22 -0500
commit15c0a79922cf004d5149728072ff4e9049eed521 (patch)
treeb1d80bb6534f99bcf193c8b23d0e3716f2a9ab04 /nvim/lua
parente15e7485ca01684543c97ddf3f53889f6d8131de (diff)
Make nvim term "leader`" key
Diffstat (limited to 'nvim/lua')
-rw-r--r--nvim/lua/term.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/lua/term.lua b/nvim/lua/term.lua
index 9f3062d..e7aac4e 100644
--- a/nvim/lua/term.lua
+++ b/nvim/lua/term.lua
@@ -7,7 +7,7 @@ require("toggleterm").setup{
return vim.o.columns * 0.4
end
end,
- open_mapping = [[<c-\>]], -- or { [[<c-\>]], [[<c-¥>]] } if you also use a Japanese keyboard.
+ open_mapping = [[<leader>`]], -- or { [[<c-\>]], [[<c-¥>]] } if you also use a Japanese keyboard.
hide_numbers = true, -- hide the number column in toggleterm buffers
shade_filetypes = {},
autochdir = false, -- when neovim changes it current directory the terminal will change it's own when next it's opened