atac.nvim
April 21, 2024 · View on GitHub
Overview
atac.nvim is a atac plugin for neovim that allows you to make REST requests without leaving neovim.
✨ Features
- ✨ Toggle
Atacin neovim without leaving your workspace. Just useAtaccommand.
🔌 Available commands
Atac
⚡️Requirements
neovim>= 0.9 and nightly 0.10-dev releasesatac>= 0.13.0
💻 Installation
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
}