summaryrefslogtreecommitdiff
path: root/dotfiles/nvim/lua/master/plugins/toggleterm.lua
blob: 79c34888ff0c9139477142fd698a8831ec8524b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require("toggleterm").setup{
	size = 6,
	open_mapping = [[<c-f>]],
	hide_numbers = true,
	shade_terminals = true,
	direction = "float",

	float_opts = {
		border = 'curved',
		winblend = 10, --transparency
	}

}