Files
neovim-config/lua/taken/plugins/lazy/toggleterm.lua
2023-08-24 14:05:05 +02:00

10 lines
172 B
Lua

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