-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnix-develop.txt
91 lines (64 loc) · 2.16 KB
/
nix-develop.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
==============================================================================
`nix develop` for neovim *nix-develop*
*nix-develop.nvim*
*:NixDevelop*
https://github.com/figsoda/nix-develop.nvim
>
:NixDevelop
:NixShell
:RiffShell
:NixDevelop .#foo
:NixDevelop --impure
:NixShell nixpkgs#hello
:RiffShell --project-dir foo
<
ignored_variables *nix-develop.ignored_variables*
>lua
require("nix-develop").ignored_variables["SHELL"] = false
<
separated_variables *nix-develop.separated_variables*
>lua
require("nix-develop").separated_variables["LUA_PATH"] = ":"
<
M.enter_dev_env({cmd}, {args}) *nix-develop.enter_dev_env*
Enter a development environment
Parameters: ~
{cmd} (string)
{args} (string[])
Returns: ~
(nil)
Usage: ~
>lua
require("nix-develop").enter_dev_env("nix", {"print-dev-env", "--json"})
<
M.nix_develop({args}) *nix-develop.nix_develop*
Enter a development environment a la `nix develop`
Parameters: ~
{args} (string[]) Extra arguments to pass to `nix print-dev-env`
Returns: ~
(nil)
Usage: ~
>lua
require("nix-develop").nix_develop({".#foo", "--impure"})
<
M.nix_shell({args}) *nix-develop.nix_shell*
Enter a development environment a la `nix shell`
Parameters: ~
{args} (string[]) Extra arguments to pass to `nix build`
Returns: ~
(nil)
Usage: ~
>lua
require("nix-develop").nix_shell({"nixpkgs#hello"})
<
M.riff_shell({args}) *nix-develop.riff_shell*
Enter a development environment a la `riff shell`
Parameters: ~
{args} (string[]) Extra arguments to pass to `riff print-dev-env`
Returns: ~
(nil)
Usage: ~
>lua
require("nix-develop").riff_shell({"--project-dir", "foo"})
<
vim:tw=78:ts=8:noet:ft=help:norl: