Evie Litherland-Smith
8be5da1fbc
Neotree is back on the side for edgy support ToggleTerm back to horizontal rather than tab
9 lines
243 B
Lua
9 lines
243 B
Lua
return {
|
|
"akinsho/toggleterm.nvim",
|
|
cond = not vim.g.vscode,
|
|
version = "*",
|
|
cmd = { "ToggleTerm" },
|
|
init = function() vim.keymap.set("n", "<leader>tt", "<cmd>ToggleTerm<CR>") end,
|
|
opts = { direction = "horizontal" },
|
|
}
|