mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-13 01:28:24 -05:00
21 lines
410 B
Lua
21 lines
410 B
Lua
local M = {}
|
|
|
|
M.config = function()
|
|
require('toggleterm').setup {
|
|
open_mapping = [[<c-\>]],
|
|
shade_terminals = false,
|
|
float_opts = {
|
|
border = 'curved',
|
|
width = 80,
|
|
height = 80,
|
|
winblend = 3,
|
|
highlights = {
|
|
border = 'Normal',
|
|
background = 'Normal'
|
|
}
|
|
}
|
|
}
|
|
end
|
|
|
|
return M
|