Files
neovim-config/lua/taken/plugins/lazy/toggleterm.lua
2023-08-31 12:14:37 +02:00

10 lines
173 B
Lua

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