docs: add trouble shooting for nix
This commit is contained in:
parent
2db251e8ef
commit
9b24b089b4
19
README.md
19
README.md
|
@ -72,6 +72,25 @@ This table represents how much will the theme look alike to it's original one. L
|
|||
| Ruby | TODO |
|
||||
| Swift | TODO |
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
In some cases you might encouner an error like:
|
||||
```
|
||||
> ======================================================
|
||||
> No successful require checks.
|
||||
>
|
||||
> Require check failed for the following modules:
|
||||
> - shades_of_purple.shades_of_purple
|
||||
> ======================================================
|
||||
```
|
||||
This can be solved by not checking this package
|
||||
```nix
|
||||
pkgs.vimUtils.buildVimPlugin {
|
||||
...
|
||||
doCheck = false;
|
||||
...
|
||||
};
|
||||
```
|
||||
## Made possible with
|
||||
|
||||
- [lush.nvim](https://github.com/rktjmp/lush.nvim/) and it's [starter template](https://github.com/rktjmp/lush-template).
|
||||
|
|
Loading…
Reference in a new issue