mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-07-18 01:34:32 +02:00
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:
parent
c00e3aa6b1
commit
7d0dbc6ded
5 changed files with 101 additions and 3 deletions
|
@ -12,6 +12,11 @@ vim.g.autoformat = true
|
|||
-- * a function with signature `function(buf) -> string|string[]`
|
||||
vim.g.root_spec = { "lsp", { ".git", "lua" }, "cwd" }
|
||||
|
||||
-- LazyVim automatically configures the lazygit theme,
|
||||
-- based on the active colorscheme.
|
||||
-- Set to false to disable.
|
||||
vim.g.lazygit_theme = true
|
||||
|
||||
-- Optionally setup the terminal to use
|
||||
-- This sets `vim.o.shell` and does some additional configuration for:
|
||||
-- * pwsh
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue