@@ -273,7 +273,8 @@ require('lazy').setup({
273273 -- options to `gitsigns.nvim`.
274274 --
275275 -- See `:help gitsigns` to understand what the configuration keys do
276- { -- Adds git related signs to the gutter, as well as utilities for managing changes
276+ -- Adds git related signs to the gutter, as well as utilities for managing changes
277+ {
277278 ' lewis6991/gitsigns.nvim' ,
278279 --- @module ' gitsigns'
279280 --- @type Gitsigns.Config
@@ -302,8 +303,9 @@ require('lazy').setup({
302303 --
303304 -- Then, because we use the `opts` key (recommended), the configuration runs
304305 -- after the plugin has been loaded as `require(MODULE).setup(opts)`.
305-
306- { -- Useful plugin to show you pending keybinds.
306+ --
307+ -- Useful plugin to show you pending keybinds.
308+ {
307309 ' folke/which-key.nvim' ,
308310 event = ' VimEnter' ,
309311 --- @module ' which-key'
@@ -330,8 +332,9 @@ require('lazy').setup({
330332 -- you do for a plugin at the top level, you can do for a dependency.
331333 --
332334 -- Use the `dependencies` key to specify the dependencies of a particular plugin
333-
334- { -- Fuzzy Finder (files, lsp, etc)
335+ --
336+ -- Fuzzy Finder (files, lsp, etc)
337+ {
335338 ' nvim-telescope/telescope.nvim' ,
336339 -- By default, Telescope is included and acts as your picker for everything.
337340
@@ -346,7 +349,8 @@ require('lazy').setup({
346349 event = ' VimEnter' ,
347350 dependencies = {
348351 ' nvim-lua/plenary.nvim' ,
349- { -- If encountering errors, see telescope-fzf-native README for installation instructions
352+ -- If encountering errors, see telescope-fzf-native README for installation instructions
353+ {
350354 ' nvim-telescope/telescope-fzf-native.nvim' ,
351355
352356 -- `build` is used to run some command when the plugin is installed/updated.
@@ -669,7 +673,8 @@ require('lazy').setup({
669673 end ,
670674 },
671675
672- { -- Autoformat
676+ -- Autoformat
677+ {
673678 ' stevearc/conform.nvim' ,
674679 event = { ' BufWritePre' },
675680 cmd = { ' ConformInfo' },
@@ -712,7 +717,8 @@ require('lazy').setup({
712717 },
713718 },
714719
715- { -- Autocompletion
720+ -- Autocompletion
721+ {
716722 ' saghen/blink.cmp' ,
717723 event = ' VimEnter' ,
718724 version = ' 1.*' ,
@@ -805,7 +811,8 @@ require('lazy').setup({
805811 },
806812 },
807813
808- { -- You can easily change to a different colorscheme.
814+ {
815+ -- You can easily change to a different colorscheme.
809816 -- Change the name of the colorscheme plugin below, and then
810817 -- change the command in the config to whatever the name of that colorscheme is.
811818 --
@@ -838,7 +845,8 @@ require('lazy').setup({
838845 opts = { signs = false },
839846 },
840847
841- { -- Collection of various small independent plugins/modules
848+ -- Collection of various small independent plugins/modules
849+ {
842850 ' nvim-mini/mini.nvim' ,
843851 config = function ()
844852 -- Better Around/Inside textobjects
@@ -881,7 +889,8 @@ require('lazy').setup({
881889 end ,
882890 },
883891
884- { -- Highlight, edit, and navigate code
892+ -- Highlight, edit, and navigate code
893+ {
885894 ' nvim-treesitter/nvim-treesitter' ,
886895 lazy = false ,
887896 build = ' :TSUpdate' ,
0 commit comments