summaryrefslogtreecommitdiff
path: root/lua/ben/lazy.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/ben/lazy.lua')
-rw-r--r--lua/ben/lazy.lua26
1 files changed, 0 insertions, 26 deletions
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,
- },
-})