Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update faq.md #435

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions versioned_docs/version-1.3/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,17 @@
exec neovide -- -u "$LUNARVIM_BASE_DIR/init.lua" "$@"
```

Or you can set `$NEOVIM_BIN` env variable to let neovide start with lvim by default
```sh
export NEOVIM_BIN=$(which lvim)
```

```
$ neovide --help
--neovim-bin <NEOVIM_BIN>
Which NeoVim binary to invoke headlessly instead of `nvim` found on $PATH

Check failure on line 33 in versioned_docs/version-1.3/faq.md

View workflow job for this annotation

GitHub Actions / Check Spelling

`headlessly` is not a recognized word. (unrecognized-spelling)
```

## What is `null-ls` and why do you use it?

For C/C++ we have the `clangd` by `llvm` which can also use its siblings' abilities `clang-tidy` and `clang-format` to support additional linting and formatting. But something like `pyright` doesn't support formatting, so we use `null-ls` to register `black` and `flake8` for example, as a "fake" language server.
Expand Down
Loading