FollieHiyuki-dotfiles/home/.config/nvim/lua/modules/terminal.lua

21 lines
410 B
Lua
Raw Normal View History

2021-07-07 15:33:29 -04:00
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