Skip to content

foxoman/zed-nim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zed-nim

Nim extension for Zed Editor v0.0.2

Install,

Nim support has been officially integrated into the Zed editor through this extension. To enable it, search for "Nim" in the Zed extensions and install it.

image

For Dev / Manual install

  • Download the release source
  • Extract it into a folder
  • Go to the extension page in Zed and click on Install Dev Extension image
  • Wait for a time till it builds and you will see nim extension installed image

Screenshot

image

Inlay hints

image

Tasks

Support for current file run, nimble run, nimble build, nimble test

image

Lsp Error

image

image

Other supported features:

  • Go to definition and type definition
  • Rename
  • Hover

Formating Configuration

To use nph as a formatter, add this to your settings

  "languages": {
    "Nim": {
      "formatter": {
        "external": {
          "command": "nph",
          "arguments": ["-"]
        }
      }
    }
  }

To-Do List for Project:

  • Fix Project Config options
  • Add runnable functionality
  • Implement Debug Task
  • Develop Macros
  • Create code snippets