diff --git a/nvim/.config/nvim/lua/modules/terminal.lua b/nvim/.config/nvim/lua/modules/terminal.lua index 54f5726..1f1dac2 100644 --- a/nvim/.config/nvim/lua/modules/terminal.lua +++ b/nvim/.config/nvim/lua/modules/terminal.lua @@ -72,7 +72,8 @@ return { -- simple programmable terminal toggling for nvim end, cmd = { "ToggleTerm", "TermExec", "Lazygit", "Pythonterm", "Euporieterm" }, keys = { - { "tt", ":ToggleTerm", desc = "terminal" }, + { "tt", ":ToggleTerm", desc = "terminal buffer" }, + { "tT", ":ToggleTerm direction='float'", desc = "terminal floating" }, { "tg", ":Lazygit", desc = "git floating" }, { "tG", ":Lazygit!", desc = "git buffer" }, { "tp", ":Pythonterm", desc = "python floating" },