Added toggle term to be lazy loaded

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2023-08-24 14:05:05 +02:00
parent 6b69394c0a
commit e4ff38178a
2 changed files with 15 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
local status, toggleterm = pcall(require, "toggleterm")
if not status then
return
end
toggleterm.setup {
shell = "pwsh.exe -nologo",
start_in_insert = true,
}