2023-02-06 18:10:37 +00:00
|
|
|
[[ch-try-it-out]]
|
|
|
|
== Try it out
|
|
|
|
|
|
|
|
[source,console]
|
|
|
|
----
|
|
|
|
$ cachix use neovim-flake # Optional: it'll save you CPU resources and time
|
2023-05-10 09:21:36 +00:00
|
|
|
$ nix run github:notashelf/neovim-flake # will run the default configuration
|
2023-02-06 18:10:37 +00:00
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
=== Nix
|
|
|
|
|
|
|
|
By default LSP support for Nix is enabled alongside all complementary Neovim plugins. By running `nix run .`, which is the default package,
|
|
|
|
you will build Neovim with this config.
|
|
|
|
|
|
|
|
=== Tidal
|
|
|
|
|
|
|
|
Tidal is an alternative config that adds vim-tidal on top of the plugins from the Nix configuration.
|
|
|
|
|
|
|
|
=== Maximal
|
|
|
|
|
|
|
|
Maximal is the ultimate configuration that will enable basically everything. Keep in mind, however, that this will pull a lot of dependencies.
|
|
|
|
|
2023-04-15 09:06:03 +00:00
|
|
|
You are strongly recommended to use the binary cache if you would like to try the Maximal configuration.
|
|
|
|
|
2023-02-06 18:10:37 +00:00
|
|
|
|
|
|
|
=== Using Prebuilt Configs
|
|
|
|
|
|
|
|
[source,console]
|
|
|
|
----
|
|
|
|
$ nix run github:notashelf/neovim-flake#nix
|
|
|
|
$ nix run github:notashelf/neovim-flake#tidal
|
|
|
|
$ nix run github:notashelf/neovim-flake#maximal
|
|
|
|
----
|