summaryrefslogtreecommitdiff
path: root/lua/ben/lazy.lua
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2024-05-23 01:06:50 -0400
committerBenjamin Chausse <benjamin@chausse.xyz>2024-05-23 01:06:50 -0400
commit1c0ac26114e249548dfdd270a07bc2336a37b6e2 (patch)
tree67a9a69b8de26b6ecb9008a0d992e865d1fc12c2 /lua/ben/lazy.lua
parent796db1e83d41d25a277c46c968a168702c1f3eb8 (diff)
Massive simplification
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,
- },
-})