pin some plugins to stable versions and document Lazy restore command

This commit is contained in:
Oliver Ladner 2024-01-19 14:32:36 +01:00
commit dd435eae05
6 changed files with 22 additions and 18 deletions

View file

@ -1,6 +1,7 @@
-- Some things are from https://www.josean.com/posts/neovim-linting-and-formatting
return {
"stevearc/conform.nvim",
tag = "stable",
opts = {},
config = function()
local conform = require("conform")

View file

@ -12,6 +12,7 @@ return {
},
{
"williamboman/mason.nvim",
tag = "stable",
lazy = false,
config = true,
},
@ -53,7 +54,7 @@ return {
event = { "BufReadPre", "BufNewFile" },
dependencies = {
{ "hrsh7th/cmp-nvim-lsp" },
{ "williamboman/mason-lspconfig.nvim" },
{ "williamboman/mason-lspconfig.nvim", tag = "stable" },
},
config = function()
-- This is where all the LSP shenanigans will live

View file

@ -1,6 +1,6 @@
return {
"nvim-telescope/telescope.nvim",
tag = "0.1.4",
tag = "0.1.5",
dependencies = {
"nvim-lua/plenary.nvim",
},

View file

@ -1,5 +1,6 @@
return {
"folke/tokyonight.nvim",
tag = "stable",
lazy = false,
priority = 1000,
opts = {},