diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint.yml similarity index 80% rename from .github/workflows/lint-test.yml rename to .github/workflows/lint.yml index ff08bfd..deda016 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint.yml @@ -1,6 +1,11 @@ --- -on: [push, pull_request] -name: lint-test +on: + push: + paths: + - '**.lua' + pull_request: + +name: lint jobs: stylua: diff --git a/README.md b/README.md index 7217fa2..de1839b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![LuaRocks](https://img.shields.io/luarocks/v/cultab/command.nvim?logo=lua&color=purple)](https://luarocks.org/modules/cultab/command.nvim) + # command.nvim command.nvim is a simple command runner. You give it a command and it runs it in a new or existing pane of your multiplexer (or a ToggleTerm terminal). @@ -65,7 +67,7 @@ Or use the user commands: ## Configuration -Configurations is done by passing setting the `vim.g.command` table. +Configurations is done by setting the `vim.g.command` table. ```lua vim.g.command = {--[[ options go here ]]} )