Update: Lazy loading for indent-blankline, Comment, gitsigns, which-key

This commit is contained in:
psychhim
2025-10-12 14:55:59 +05:30
parent 49ea239f75
commit 58bbb03770

View File

@@ -135,10 +135,11 @@ require('lazy').setup({
},
-- Useful plugin to show you pending keybinds.
{ 'folke/which-key.nvim', opts = {} },
{ 'folke/which-key.nvim', event = 'VeryLazy', opts = {} },
{
-- Adds git related signs to the gutter, as well as utilities for managing changes
'lewis6991/gitsigns.nvim',
event = 'BufReadPre',
opts = {
-- See `:help gitsigns.txt`
signs = {
@@ -235,10 +236,11 @@ require('lazy').setup({
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help ibl`
main = 'ibl',
event = 'BufReadPre',
opts = {},
},
-- "gc" to comment visual regions/lines
{ 'numToStr/Comment.nvim', opts = {} },
{ 'numToStr/Comment.nvim', event = 'BufReadPre', opts = {} },
{
-- Highlight, edit, and navigate code
'nvim-treesitter/nvim-treesitter',