From ada6d55021b33e3772c2ad2d18e1669b37c9ceb4 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Fri, 30 Jun 2023 20:42:28 +0200 Subject: [PATCH] by default use the releases --- lua/config/lazy.lua | 3 +++ lua/plugins/lspconfig.lua | 2 ++ 2 files changed, 5 insertions(+) diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 7f48356..a554b06 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -12,6 +12,9 @@ end vim.opt.rtp:prepend(lazypath) require('lazy').setup({ + defaults = { + version = '', + }, spec = { import = 'plugins' }, diff --git a/lua/plugins/lspconfig.lua b/lua/plugins/lspconfig.lua index dfe41bf..a6fa0dd 100644 --- a/lua/plugins/lspconfig.lua +++ b/lua/plugins/lspconfig.lua @@ -114,6 +114,8 @@ return { 'Fildo7525/pretty_hover', }, build = ':MasonUpdate', + version = nil, + branch = 'master', config = function() require('neodev').setup({ })