Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 979 Bytes

README.md

File metadata and controls

45 lines (32 loc) · 979 Bytes

run.nvim

> Blazingly fast action runner

⚡️ Features

W.I.P

📋 Installation

Using packer in lua

use {"Seba244c/run.nvim", requires = {'nvim-telescope/telescope.nvim'}, tag = '*', config = function()
  require("run").setup()
end}

Using lazy.nvim in lua

{
  -- amongst your other plugins
  {'Seba244c/run.nvim', version = "*", dependencies = {'nvim-telescope/telescope.nvim' }, config = true}
  -- or
  {'Seba244c/run.nvim', version = "*", dependencies = {'nvim-telescope/telescope.nvim' }, opts = {--[[ things you want to change go here]]}}
}

Using vim-plug in vimscript

Plug 'Seba244c/run.nvim', {'tag' : '*'}
    Plug 'nvim-telescope/telescope.nvim'

lua require("run").setup()

☄ Getting started

⚙ Configuration