nvim/lua/custom/plugins/atac.lua
Jeremie Fraeys 02e26b00b7
Some checks are pending
Check Lua Formatting in MyRepo / Stylua Check (push) Waiting to run
chore(nvim): reinitialize with working config
2026-02-07 21:06:45 -05:00

17 lines
450 B
Lua
Executable file

return {
'NachoNievaG/atac.nvim',
dependencies = { 'akinsho/toggleterm.nvim' },
config = function()
require('toggleterm').setup({
open_mapping = [[<c-\>]],
hide_numbers = true,
shade_terminals = true,
start_in_insert = true,
persist_size = true,
close_on_exit = true,
})
require('atac').setup({
dir = '~/Documents/projects/', -- By default, the dir will be set as /tmp/atac
})
end,
}