nvim/lua/custom/plugins/atac.lua
Jeremie Fraeys b28fac9f8b
Some checks failed
Luacheck / luacheck (push) Successful in 10s
StyLua / stylua (push) Failing after 3s
perf: balance - lazy load atac (cmd) and marks (keys) for better startup
2026-02-08 15:32:32 -05:00

18 lines
418 B
Lua
Executable file

return {
'NachoNievaG/atac.nvim',
cmd = 'Atac',
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/',
})
end,
}