From 1c0ac26114e249548dfdd270a07bc2336a37b6e2 Mon Sep 17 00:00:00 2001 From: Benjamin Chausse Date: Thu, 23 May 2024 01:06:50 -0400 Subject: Massive simplification --- lua/ben/lazy.lua | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 lua/ben/lazy.lua (limited to 'lua/ben/lazy.lua') diff --git a/lua/ben/lazy.lua b/lua/ben/lazy.lua deleted file mode 100644 index 46668e4..0000000 --- a/lua/ben/lazy.lua +++ /dev/null @@ -1,26 +0,0 @@ -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", -- latest stable release - lazypath, - }) -end -vim.opt.rtp:prepend(lazypath) -require("lazy").setup({ - { import = "ben.plugins" }, -}, { - install = { - colorscheme = { "everforest" }, - }, - checker = { - enabled = true, - notify = false, - }, - change_detection = { - notify = false, - }, -}) -- cgit v1.2.3