about summary refs log blame commit diff stats
path: root/.config/nvim/lua/config/plg.lua
blob: c08d99c104c1739faa4e7852e4d569a5647074fb (plain) (tree)


















                                                                              
-- Initialize lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({
    "git",
    "clone",
    "--filter=blob:none",
    "https://github.com/folke/lazy.nvim.git",
    "--branch=stable",
    lazypath,
  })
end
vim.opt.rtp:prepend(lazypath)

local plugins = {
    { "ellisonleao/gruvbox.nvim", priority = 1000 , config = true, opts = ...}
}

require("lazy").setup(plugins, {})