Skip to content

Commit

Permalink
maintenance: Exit term mode keybind change
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-mcginnis committed Apr 17, 2024
1 parent 2766480 commit 819e4d8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion lua/core/plugin_config/toggle-term.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require("toggleterm").setup {

function _G.set_terminal_keymaps()
local opts = {buffer = 0}
vim.keymap.set('t', '<c-n><c-o>', [[<C-\><C-n>]], opts)
vim.keymap.set('t', '<C-q>', [[<C-\><C-n>]], opts)
vim.keymap.set('t', '<C-j>', [[<Cmd>wincmd h<CR>]], opts)
vim.keymap.set('t', '<C-k>', [[<Cmd>wincmd j<CR>]], opts)
vim.keymap.set('t', '<C-h>', [[<Cmd>wincmd k<CR>]], opts)
Expand Down

0 comments on commit 819e4d8

Please sign in to comment.