Changed Keybinds for fterm to allow spawning of a new terminal

This commit is contained in:
Luke Else 2023-03-16 19:46:55 +00:00
parent 607d376d27
commit 0586d97290

View File

@ -6,5 +6,5 @@ local fterm = require('FTerm').setup({
},
})
vim.keymap.set('n', '<F8>', function() fterm.toggle() end)
vim.keymap.set('n', '<F8>', function() fterm.open() end)
vim.keymap.set('i', '<F8>', function() fterm.toggle() end)