.config/nvim/after/plugin/fterm.lua

10 lines
253 B
Lua
Raw Normal View History

2023-03-16 19:41:22 +00:00
local fterm = require('FTerm').setup({
border = 'double',
dimensions = {
height = 0.9,
width = 0.9,
},
})
vim.keymap.set('n', '<F8>', function() fterm.toggle() end)
vim.keymap.set('i', '<F8>', function() fterm.toggle() end)