Skip to content

wuilliam321/nvim-autorun

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 

Repository files navigation

AutoRun (tests)

Requirements

Install

You can use any nvim package manager, for example, using packer.nvim:

    ...
    use {
        'wuilliam321/nvim-autorun',
        config = function()
            local w = math.floor(vim.api.nvim_win_get_width(0))
            local h = math.floor(vim.api.nvim_win_get_height(0) / 4)
            require('autorun').setup({
              show_returns = true,
              run_on_save = false,
              window = {
                relative = 'editor',
                height = h,
                width = w,
                top = h * 3,
                left = 0,
                style = 'minimal',
                border = 'double',
                transparent = 10,
              }
            })
        end
    }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages