@@ -185,21 +185,6 @@ require('lazy').setup({
185185 -- options to `gitsigns.nvim`.
186186 --
187187 -- See `:help gitsigns` to understand what the configuration keys do
188- { -- Adds git related signs to the gutter, as well as utilities for managing changes
189- ' lewis6991/gitsigns.nvim' ,
190- --- @module ' gitsigns'
191- --- @type Gitsigns.Config
192- --- @diagnostic disable-next-line : missing-fields
193- opts = {
194- signs = {
195- add = { text = ' +' }, --- @diagnostic disable-line : missing-fields
196- change = { text = ' ~' }, --- @diagnostic disable-line : missing-fields
197- delete = { text = ' _' }, --- @diagnostic disable-line : missing-fields
198- topdelete = { text = ' ‾' }, --- @diagnostic disable-line : missing-fields
199- changedelete = { text = ' ~' }, --- @diagnostic disable-line : missing-fields
200- },
201- },
202- },
203188
204189 -- NOTE: Plugins can also be configured to run Lua code when they are loaded.
205190 --
@@ -214,6 +199,7 @@ require('lazy').setup({
214199 --
215200 -- Then, because we use the `opts` key (recommended), the configuration runs
216201 -- after the plugin has been loaded as `require(MODULE).setup(opts)`.
202+ require ' kickstart.plugins.gitsigns' , -- adds gitsigns recommended keymaps
217203
218204 { -- Useful plugin to show you pending keybinds.
219205 ' folke/which-key.nvim' ,
@@ -827,7 +813,6 @@ require('lazy').setup({
827813 -- require 'kickstart.plugins.lint',
828814 -- require 'kickstart.plugins.autopairs',
829815 -- require 'kickstart.plugins.neo-tree',
830- -- require 'kickstart.plugins.gitsigns', -- adds gitsigns recommended keymaps
831816
832817 -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
833818 -- This is the easiest way to modularize your config.
0 commit comments