From cc4ecf4b9dbd5847e24308ea5b1843d59e2a0bfa Mon Sep 17 00:00:00 2001 From: Dheepak Krishnamurthy Date: Mon, 6 Apr 2020 10:37:05 -0600 Subject: [PATCH] Update configuration options --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f8c85e4..ce05741 100644 --- a/README.md +++ b/README.md @@ -26,10 +26,17 @@ Plugin 'kdheepak/lazygit.vim' ### Usage +The following are configuration options and their defaults. + ```vim +let g:lazygit_floating_window_winblend = 0 " transparency of floating window +let g:lazygit_floating_window_scaling_factor = 0.9 " scaling factor for floating window +``` -let g:lazygit_floating_window_winblend = 5 " transparency of floating window +Call `:LazyGit` to start a floating window with `lazygit`. +And set up a mapping to call `:LazyGit`: +```vim " setup mapping to call :LazyGit nnoremap lg :LazyGit ```