Files
neovim-config/after/plugin/toggleterm.lua

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,
}