Some checks are pending
Check Lua Formatting in MyRepo / Stylua Check (push) Waiting to run
17 lines
450 B
Lua
Executable file
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,
|
|
}
|