From 36a7cd93641633c2cac61098dd316c819146cfad Mon Sep 17 00:00:00 2001 From: PowerUser64 <blakelysnorth@gmail.com> Date: Tue, 19 Oct 2021 20:02:47 -0700 Subject: [PATCH] nvim: toggleterm is a floating window again --- .config/nvim/lua/blake/other.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/blake/other.lua b/.config/nvim/lua/blake/other.lua index d54ab9e..0fc56cc 100644 --- a/.config/nvim/lua/blake/other.lua +++ b/.config/nvim/lua/blake/other.lua @@ -62,7 +62,7 @@ M.toggleterm = function() start_in_insert = true, insert_mappings = true, -- whether or not the open mapping applies in insert mode persist_size = true, - direction = 'vertical', -- vertical, horizontal, window, or float + direction = 'float', -- vertical, horizontal, window, or float close_on_exit = true, -- close the terminal window when the process exits -- shell = vim.o.shell, -- change the default shell -- This field is only relevant if direction is set to 'float'