Skip to content

Commit

Permalink
Update faq.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlai97 authored Nov 24, 2023
1 parent ff55118 commit 815cb6d
Showing 1 changed file with 11 additions and 0 deletions.
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

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

0 comments on commit 815cb6d

Please sign in to comment.