atac.nvim

April 21, 2024 · View on GitHub

atac.nvim

⚔📩 An atac port for neovim 🔌

Lua

License Status Neovim

Overview

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

✨ Features

  • ✨ Toggle Atac in neovim without leaving your workspace. Just use Atac command.
image

🔌 Available commands

  • Atac

⚡️Requirements

  • neovim >= 0.9 and nightly 0.10-dev releases
  • atac >= 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:

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
    }