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.

28 lines
577 B

  1. # Nim
  2. [Nim](https://nim-lang.org) is a statically typed compiled systems programming
  3. ## Autocompletion
  4. ### Coc
  5. To enable autocompletion for [coc](coc.md) you need to install `nimlsp`
  6. (`nimble install nimlsp`).
  7. After that you need to add the following lines to your coc config file.
  8. ```json
  9. {
  10. "languageserver": {
  11. "nim": {
  12. "command": "nimlsp",
  13. "filetypes": ["nim"],
  14. "trace.server": "verbose"
  15. }
  16. }
  17. }
  18. ```
  19. ### Highlighting
  20. To enable highlighting you can install a
  21. [vim plugin by zah](https://github.com/zah/nim.vim).