dotfiles/neovim/.config/nvim/lua/plugins/neoterm.lua
2024-06-25 10:18:09 -06:00

12 lines
396 B
Lua

return {{
-- Floating terminal
"itmecho/neoterm.nvim",
opts = {
clear_on_run = true, -- run clear command before user specified commands
mode = "horizontal", -- vertical/horizontal/fullscreen
noinsert = false -- disable entering insert mode when opening the neoterm window
},
config = function(_, opts)
require("neoterm").setup(opts)
end
}}