From 3b2163b821f4dbf1003804b9b19fd276dc4bc350 Mon Sep 17 00:00:00 2001 From: tdback Date: Wed, 4 Dec 2024 18:48:24 -0500 Subject: initial commit to new repo --- lua/custom/lazy.lua | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lua/custom/lazy.lua (limited to 'lua/custom/lazy.lua') diff --git a/lua/custom/lazy.lua b/lua/custom/lazy.lua new file mode 100644 index 0000000..4b4046d --- /dev/null +++ b/lua/custom/lazy.lua @@ -0,0 +1,20 @@ +vim.g.mapleader = " " +vim.g.maplocalleader = " " + +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not (vim.uv or vim.loop).fs_stat(lazypath) then + vim.fn.system({ + "git", + "clone", + "--filter=blob:none", + "--branch=stable", + "https://github.com/folke/lazy.nvim.git", + lazypath, + }) +end + +vim.opt.rtp:prepend(lazypath) + +require("lazy").setup({ import = "custom/plugins" }, { + change_detection = { notify = false }, +}) -- cgit v1.2.3