DrVilepis / testaustime.nvim

Testaustime Neovim plugin written in lua

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Testaustime.nvim

The testaustime plugin for Neovim, written in Lua this time

Installation

You can use your favourite plugin manager, here's an example for packer.nvim:

use {
    'testaustime/testaustime.nvim', requires = { 'nvim-lua/plenary.nvim' },
    config = function() require'testaustime'.setup({token = "yourtoken"}) end
}

Or you alternatively can simply use the plugin here then require and setup it elsewhere in your config:

use {
    'testaustime/testaustime.nvim', requires = { 'nvim-lua/plenary.nvim' },
}

Configuration

These are all the available configuration options currently:

require'testaustime'.setup({
    token = "yourVerySecretTestaustimeAuthenticationToken", --required
    api_url = "https://your.testaustimeinstance.com",
    useragent = "FunnyUserAgentForBackendHostToLaughAt",
    ignored_filetypes = {"packer", "netrw", "help", "qf", "TelescopePrompt", "gitcommit"},
    editor_name = "Neovim",
})

About

Testaustime Neovim plugin written in lua

License:MIT License


Languages

Language:Lua 100.0%