Home

Awesome

<div align="center">

atac.nvim

⚔📩 An atac port for neovim 🔌

</div> <div align="center">

Lua

</div> <div align="center">

License Status Neovim

</div> </div>

Overview

atac.nvim is a atac plugin for neovim that allows you to make REST requests without leaving neovim.

✨ Features

<img width="1728" alt="image" src="assets/atac.jpg">

🔌 Available commands

⚡️Requirements

💻 Installation

Make sure you have atac installed.<br>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:

Lazy

	{
		"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,
	},

Packer

    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
    }