nvim: Fix lazy loading of plugins

They were not loading until too late, they need to load earlier to be
useful

Signed-off-by: Nicholas Mello <nick@nmello.dev>
This commit is contained in:
2025-08-14 23:25:07 -05:00
parent 1273ad4779
commit b87970ab1c
2 changed files with 2 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
return {
{
"lewis6991/gitsigns.nvim",
event = "VeryLazy",
config = function()
require("gitsigns").setup({
signs = {

View File

@@ -7,6 +7,7 @@ vim.api.nvim_create_autocmd("BufWritePre", {
return {
{
"neovim/nvim-lspconfig",
lazy = false,
keys = {
-- Navigation
{ "<leader>dgd", vim.lsp.buf.definition, desc = "Go to Definition" },