Skip to content
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 @@ export LUNARVIM_BASE_DIR="${LUNARVIM_BASE_DIR:-"$HOME/.local/share/lunarvim/lvim
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
```

## 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