dotfiles-nix/nix/users/base/neovim/plugins/toggleterm.lua

10 lines
218 B
Lua

local status, plugin = pcall(require,'toggleterm')
if not status then
print('Error with plugin: ', plugin)
return
end
plugin.setup({
size = 10,
open_mapping = [[<c-\>]],
direction = 'horizontal',
})