Home

Awesome

Sublime Text + Gleam

Gleam syntax support for Sublime Text.

<p> <img alt="light screenshot" title="Breakers" src="images/screen-light.png" width="45%"> <img alt="dark screenshot" title="Mariana" src="images/screen-dark.png" width="45%"> </p>

Installation

This package is available on Package Control. To install:

  1. Open the command palette (<kbd>Ctrl/Cmd</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd>)
  2. Select Package Control: Install Package
  3. Select Gleam

LSP Integration

The LSP package enables improved autocomplete, go-to-definition, formatting, "hover docs", compiler errors and warnings in the editor, and more. To set it up, install the package and open its settings (Preferences: LSP Settings in the command palette), then add this config:

{
  "clients": {
    "gleam": {
      "enabled": true,
      "command": ["gleam", "lsp"],
      "selector": "source.gleam"
    }
  },
  "lsp_format_on_save": true
}

Fmt Integration

The LSP package (see above) includes code formatting in the editor, but if you don't want to or can't use the LSP, you can still get formatting using the Fmt package. Follow the instructions to install it and open the package settings, then add this rule:

{
  "rules": [
    {
      "selector": "source.gleam",
      "cmd": ["gleam", "format", "--stdin"],
      "format_on_save": true,
      "merge_type": "diff",
    },
  ],
}

Compatibility

This package is developed for Sublime Text 4+, and is not available in Package Control on older versions. It can be installed manually in Sublime Text 3, but this is unsupported, and bugs that only appear in ST3 will not be fixed.

Manual Installation

  1. Download the .zip for the desired version from the GitHub Releases page
  2. Rename this file (without unzipping it) to Gleam.sublime-package
  3. Place the file in your Sublime Text "Installed Packages" directory

"Installed Packages" can be found using Preferences → Browse Packages within Sublime Text (go up one level from the directory this opens).