atac.nvim
is a atac
plugin for neovim that allows you to make REST requests without leaving neovim.
- ✨ Toggle
Atac
in neovim without leaving your workspace. Just useAtac
command.
Atac
neovim
>= 0.9 and nightly 0.10-dev releasesatac
>= 0.13.0
Make sure you have atac installed.
Have in mind there are some caveats in installing ATAC in MacOS, be advised.
Install the atac.nvim
neovim plugin with your favorite package manager:
{
"NachoNievaG/atac.nvim",
dependencies = { "akinsho/toggleterm.nvim" },
config = function()
require("atac").setup({
dir = "~/my/work/directory", -- By default, the dir will be set as /tmp/atac
})
end,
},
use {
"NachoNievaG/atac.nvim",
requires = { "akinsho/toggleterm.nvim" },
config = function() require('atac').setup({
dir = "~/my/work/directory", -- By default, the dir will be set as /tmp/atac
}) end
}