1
1
mirror of https://github.com/oxalica/nil.git synced 2024-11-27 10:11:04 +03:00
nil/README.md

142 lines
4.0 KiB
Markdown
Raw Normal View History

# nil: Yet another language server for Nix
2022-08-01 04:31:10 +03:00
2022-09-19 04:45:49 +03:00
[![CI](https://github.com/oxalica/nil/actions/workflows/ci.yml/badge.svg)](https://github.com/oxalica/nil/actions/workflows/ci.yml)
2022-08-02 07:03:47 +03:00
🚧 *This project is under development, but be happy to try it out!*
2022-08-05 14:01:45 +03:00
Super fast incremental analysis! Scans `all-packages.nix` in less than 0.1s and completes with no delay!
2022-08-02 07:03:47 +03:00
## Features
See [release notes][releases] for change log between tagged unstable versions.
See [`docs/features.md`](docs/features.md) for an incomplete list of notable features currently
implemented or planned.
[releases]: https://github.com/oxalica/nil/releases
2022-08-02 07:03:47 +03:00
2022-08-01 04:31:10 +03:00
## Installation
This program is already included in [NixOS/nixpkgs][nixpkgs] under attribute `nil`,
and are regularly updated.
[nixpkgs]: https://github.com/NixOS/nixpkgs
2022-09-27 17:17:40 +03:00
Note: This package requires a relatively new version of Rust to compile.
You need at least `nixpkgs-unstable` to build it.
- If you use `nix-env`, run `nix-env -iA nixpkgs.nil`
- If you use `nix profile`, run `nix profile install nixpkgs#nil`
2022-09-27 17:17:40 +03:00
- If you want to compile it from source.
1. Install stable Rust toolchain >= 1.62
1. Install `nix` >= 2.4 and make the binary `nix` available from your `PATH`.
1. Build and install via `cargo install --git https://github.com/oxalica/nil nil`
## Flake
This repo is also packaged via [Nix flakes][nix-flakes], the language server binary package is
2022-08-04 10:53:05 +03:00
available through the default flake output `github:oxalica/nil#` with the path `bin/nil`.
2022-08-05 14:01:45 +03:00
You can [enable flakes support][nix-flakes-install] 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.
2022-08-04 10:53:05 +03:00
Flake output structure:
```
├───devShells
│ └───(...)
└───packages
├───x86_64-linux
│ ├───default: package 'nil-unstable-2022-08-04'
│ └───nil: package 'nil-unstable-2022-08-04'
└───(...)
```
[nix-flakes]: https://nixos.wiki/wiki/Flakes
2022-08-05 14:01:45 +03:00
[nix-flakes-install]: https://nixos.wiki/wiki/Flakes#Installing_flakes
2022-08-01 04:31:10 +03:00
2022-09-05 16:51:02 +03:00
## Editor integration
2022-08-01 04:31:10 +03:00
2022-09-05 16:51:02 +03:00
### Neovim native LSP and [`nvim-lspconfig`]
2022-08-01 04:31:10 +03:00
2022-09-05 16:51:02 +03:00
[`nvim-lspconfig`]: https://github.com/neovim/nvim-lspconfig
We are officially supported by `nvim-lspconfig`, see [upstream docs](https://github.com/neovim/nvim-lspconfig/blob/0fafc3ef648bd612757630097c96b725a36a0476/doc/server_configurations.txt#nil_ls).
See also [the example config for testing](dev/neovim-lsp.nix).
### Vim/Neovim with [`coc.nvim`]
2022-09-05 16:51:02 +03:00
[`coc.nvim`]: https://github.com/neoclide/coc.nvim
Merge this setting into your `coc-settings.json`, which can be opened by `:CocConfig`.
```json
{
"languageserver": {
"nix": {
"command": "nil",
"filetypes": ["nix"],
"rootPatterns": ["flake.nix"]
}
2022-08-01 04:31:10 +03:00
}
2022-09-05 16:51:02 +03:00
}
2022-08-01 04:31:10 +03:00
```
See also [the example config for testing](dev/vim-coc.nix).
2022-09-28 13:17:33 +03:00
### Vim with [`vim-lsp`]
[`vim-lsp`]: https://github.com/prabirshrestha/vim-lsp
Add the following code to your `vimrc` to register the LSP server.
Thanks @mitchmindtree
```vim
if executable('nil')
autocmd User lsp_setup call lsp#register_server({
\ 'name': 'nil',
\ 'cmd': {server_info->['nil']},
\ 'whitelist': ['nix'],
\ })
endif
```
### Emacs with [`eglot`]
2022-09-05 16:51:02 +03:00
[`eglot`]: https://github.com/joaotavora/eglot
2022-08-05 14:01:45 +03:00
Add the following elisp code to your configuration. (using `use-package`)
```elisp
(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))
```
### Vscode/Vscodium with [Nix IDE]
2022-08-27 23:02:40 +03:00
[Nix IDE]: https://github.com/nix-community/vscode-nix-ide
Modify the extension's settings in your `settings.json`.
2022-08-27 23:02:40 +03:00
```jsonc
{
// ...
"nix.enableLanguageServer": true, // Enable LSP.
"nix.serverPath": "nil" // The path to the LSP server executable.
2022-08-27 23:02:40 +03:00
}
```
2022-08-01 04:31:10 +03:00
## 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.