10 lines
		
	
	
		
			218 B
		
	
	
	
		
			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',
 | 
						|
}) |