summaryrefslogtreecommitdiff
path: root/nvim/lua/config/lazygit.lua
diff options
context:
space:
mode:
authorSkladnayazebra <skladnayazebra@gmail.com>2025-11-03 11:46:39 +0100
committerSkladnayazebra <skladnayazebra@gmail.com>2025-11-03 11:46:39 +0100
commit555096c75f062d8617c1194e77da114ce7214adc (patch)
treed14e3ef4bfad6c5eebc5c95d0b41ae7874c5f9b0 /nvim/lua/config/lazygit.lua
parentc8556f25bf3ea38b8799d9612723e11526604c2c (diff)
parent310444ee9a4dfac0621ddda255a9ffc05a616d13 (diff)
Merge remote-tracking branch 'refs/remotes/origin/master'
Diffstat (limited to 'nvim/lua/config/lazygit.lua')
-rw-r--r--nvim/lua/config/lazygit.lua23
1 files changed, 0 insertions, 23 deletions
diff --git a/nvim/lua/config/lazygit.lua b/nvim/lua/config/lazygit.lua
deleted file mode 100644
index e1c548e..0000000
--- a/nvim/lua/config/lazygit.lua
+++ /dev/null
@@ -1,23 +0,0 @@
-vim.g.lazygit_floating_window_scaling_factor = 1
-vim.g.lazygit_floating_window_border_chars = {' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '}
-
-return {
- "kdheepak/lazygit.nvim",
- lazy = true,
- cmd = {
- "LazyGit",
- "LazyGitConfig",
- "LazyGitCurrentFile",
- "LazyGitFilter",
- "LazyGitFilterCurrentFile",
- },
- -- optional for floating window border decoration
- dependencies = {
- "nvim-lua/plenary.nvim",
- },
- -- setting the keybinding for LazyGit with 'keys' is recommended in
- -- order to load the plugin when the command is run for the first time
- keys = {
- { "<leader>lg", "<cmd>LazyGit<cr>", desc = "LazyGit" }
- }
-}