feat(lazygit): lazygit now automatically uses colors from your Neovim colorscheme

Disable by setting `vim.g.lazygit_theme = false` in your `options.lua`
This commit is contained in:
Folke Lemaitre
2024-03-26 12:43:03 +01:00
parent c00e3aa6b1
commit 7d0dbc6ded
5 changed files with 101 additions and 3 deletions

17
NEWS.md
View File

@@ -2,6 +2,23 @@
## 10.x
- **lazygit** now automatically uses the colors of your current colorscheme.
This is enabled by default. To disable, add the below to your `options.lua`:
```lua
vim.g.lazygit_theme = false
```
- Added support for `basedpyright` to the **python** extra.
Enable in your `options.lua` with:
```lua
vim.g.lazyvim_python_lsp = "basedpyright"
```
Be aware that `basedpyright` is still in development and
may not work exactly the same as `pyright`.
- User extras under `lua/plugins/extras` can now also be managed
with **LazyExtras**