nvim/lua/plugins/toggleterm.lua
Evie Litherland-Smith 6ac8053ecc Disable cspell, too annoying...
Make toggleterm use tab layout, add term keymap to alpha, change alpha
icons to use codicons where possible instead
2023-05-20 10:15:14 +01:00

8 lines
206 B
Lua

return {
"akinsho/toggleterm.nvim",
version = "*",
cmd = { "ToggleTerm" },
init = function() vim.keymap.set("n", "<leader>tt", "<cmd>ToggleTerm direction=tab<CR>") end,
config = true,
}