These are some guides for various use.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

577 B

Nim

Nim is a statically typed compiled systems programming

Autocompletion

Coc

To enable autocompletion for coc you need to install nimlsp (nimble install nimlsp). After that you need to add the following lines to your coc config file.

{
    "languageserver": {
        "nim": {
            "command": "nimlsp",
            "filetypes": ["nim"],
            "trace.server": "verbose"
        }
   }
}

Highlighting

To enable highlighting you can install a nvim plugin by alaviss.