refactor: removed floating terminal keybind in terminal mode

This commit is contained in:
Joshua Molloy 2025-03-06 17:27:22 +00:00
parent 30b3b50227
commit cb688e5ce7
1 changed files with 1 additions and 1 deletions

View File

@ -69,6 +69,6 @@ end
-- Custom command for opening and closing floating terminal
vim.api.nvim_create_user_command('FloatingTerminal', M.toggle_terminal, {})
vim.keymap.set({ 'n', 't' }, '<leader>tt', M.toggle_terminal)
vim.keymap.set({ 'n' }, '<leader>tt', M.toggle_terminal)
return M