Skip to content

Releases: dkoch84/polyester

VS Code Extension v0.2.1

20 Jan 05:44

Choose a tag to compare

Polyester VS Code Extension v0.2.1

Installation

  1. Download the .vsix file below
  2. In VS Code, open Command Palette (Ctrl+Shift+P)
  3. Run "Extensions: Install from VSIX..."
  4. Select the downloaded file

Or install from command line:

code --install-extension polyester-vscode-0.2.1.vsix

VS Code Extension v0.1.1

17 Jan 04:48

Choose a tag to compare

Polyester VS Code Extension v0.1.1

Installation

  1. Download the .vsix file below
  2. In VS Code, open Command Palette (Ctrl+Shift+P)
  3. Run "Extensions: Install from VSIX..."
  4. Select the downloaded file

Or install from command line:

code --install-extension polyester-vscode-0.1.1.vsix

Neovim Plugin v0.1.1

17 Jan 04:48

Choose a tag to compare

Polyester Neovim Plugin v0.1.1

Installation

Using lazy.nvim:

{
  "yourusername/polyester",
  config = function()
    require("polyester").setup()
  end,
}

Using packer.nvim:

use {
  "yourusername/polyester",
  config = function()
    require("polyester").setup()
  end,
}

Manual installation:

  1. Download the archive below
  2. Extract to ~/.config/nvim/pack/plugins/start/polyester/

Features

  • Syntax highlighting for .poly files
  • :PolyBuild and :PolyBuildPdf commands
  • Auto-build on save (optional)