summaryrefslogtreecommitdiff
path: root/nvim/lua
diff options
context:
space:
mode:
authorSkladnayazebra <skladnayazebra@gmail.com>2025-11-02 21:43:57 +0100
committerSkladnayazebra <skladnayazebra@gmail.com>2025-11-02 21:43:57 +0100
commit310444ee9a4dfac0621ddda255a9ffc05a616d13 (patch)
tree082593d088733fc5878777d2fd0f2a6b443a3187 /nvim/lua
parentb58b0df3dd531c52cd4c4fce081851b90c2c9797 (diff)
Remove lazygit.nvim
Diffstat (limited to 'nvim/lua')
-rw-r--r--nvim/lua/config/lazy.lua1
-rw-r--r--nvim/lua/config/lazygit.lua23
2 files changed, 0 insertions, 24 deletions
diff --git a/nvim/lua/config/lazy.lua b/nvim/lua/config/lazy.lua
index 913bacb..18fb522 100644
--- a/nvim/lua/config/lazy.lua
+++ b/nvim/lua/config/lazy.lua
@@ -58,7 +58,6 @@ require("lazy").setup({
opts = {},
},
{ "prettier/vim-prettier" },
- require("config.lazygit"),
require("config.blink-cmp"),
},
install = { colorscheme = { "gruvbox" } },
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" }
- }
-}