FollieHiyuki-dotfiles/home/.config/nvim/lua/modules/terminal.lua
2021-10-17 21:48:03 +07:00

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