rareitems / toggle_jaq.nvim

Neovim plugin for running terminal commands and showing them in togglable terminal window

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

toggle_jaq.nvim

Just another pluging that allows to quickly run commands and show their results. This time in a togglable terminal window.

Requirements

  • Neovim >= 0.8.0

Installation

use { 'rareitems/toggle_jaq.nvim' }

Default Configuration

{
  direction = "vertical",
  hide_numbers = true,
  size = 50,
  filetypes = {
    lua = { cmd = "lua %" },
    sml = { cmd = "rlwrap sml %", filetype = "sml" },
    javascript = { cmd = "node %" },
    typescript = { cmd = "ts-node %" },
  },
  create_commands = true,
  auto_resize = false,
  dynamic_size = nil,
  highlight_background = nil,
}

See more details under Config section in help file.

Usage

See details under Usage section in help file.

About

Neovim plugin for running terminal commands and showing them in togglable terminal window

License:GNU General Public License v3.0


Languages

Language:Lua 100.0%