1
1
mirror of https://github.com/oxalica/nil.git synced 2024-10-27 04:19:40 +03:00
Yet another language server for Nix
Go to file
2022-08-09 16:04:38 +08:00
lsp Fix panic 2022-08-09 07:32:09 +08:00
src Fix parser fuzz failure 2022-08-09 16:04:38 +08:00
syntax Fix parser fuzz failure 2022-08-09 16:04:38 +08:00
.gitignore Package as flake 2022-08-04 16:09:20 +08:00
Cargo.lock Enhance completion 2022-08-09 07:25:57 +08:00
Cargo.toml Enhance completion 2022-08-09 07:25:57 +08:00
flake.lock Package as flake 2022-08-04 16:09:20 +08:00
flake.nix Setup fuzzer for parser 2022-08-09 15:55:23 +08:00
LICENSE-APACHE Licenses 2022-08-01 09:12:08 +08:00
LICENSE-MIT Licenses 2022-08-01 09:12:08 +08:00
neovim-env.nix Fix flake and avoid name clash 2022-08-04 19:58:17 +08:00
README.md Enhance completion 2022-08-09 07:25:57 +08:00
rustfmt.toml Enforce merging of "use" stmts 2022-08-02 03:27:55 +08:00

nil: Language server for Nix Expression Language

🚧 This project is under development, but be happy to try it out!

Super fast incremental analysis! Scans all-packages.nix in less than 0.1s and completes with no delay!

Features

  • Goto definition. textDocument/definition
  • Find references. textDocument/reference
    • Local binding references.
    • With expression references.
  • Completion. textDocument/completion
    • Builtin names.
    • Local bindings and rec-attrset fields.
    • Keywords.
    • Attrset fields.
  • Diagnostics. textDocument/publishDiagnostics
    • Syntax errors.
      • Incomplete syntax errors are currently suppressed to avoid noisy outputs during typing.
    • Hard semantic errors reported as parse errors by Nix, like duplicated keys in attrsets.
    • Warnings of legacy syntax.
    • Warnings of unnecessary syntax.
    • Warnings of unused bindings, with and rec.
    • Client pulled diagnostics.
  • Cross-file analysis.
  • Multi-threaded.

Installation

This repo is packaged via Nix flakes, the language server binary package is available through the default flake output github:oxalica/nil# with the path bin/nil.

You can enable flakes support in your nix configuration, and then run nix profile install github:oxalica/nil to get nil installed. You can also use this repository as a flake input and add its output to your own flake-managed systemwide or home configuration.

Flake output structure:

├───devShells
│   └───(...)
└───packages
    ├───x86_64-linux
    │   ├───default: package 'nil-unstable-2022-08-04'
    │   └───nil: package 'nil-unstable-2022-08-04'
    └───(...)

For neovim nvim-lspconfig user

Add the following vimscript to your configuration.

lua <<EOF
  require('lspconfig').rnix.setup {
    autostart = true,
    -- Ensure `nil` is in your PATH.
    cmd = { "nil" },
  }
EOF

For emacs eglot user

Add the following elisp code to your configuration. (using use-package)

(use-package nix-mode)
(use-package eglot
  :config
  ;; Ensure `nil` is in your PATH.
  (add-to-list 'eglot-server-programs '(nix-mode . ("nil")))
  :hook
  (nix-mode . eglot-ensure))

License

"nil" is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT for details.