summaryrefslogtreecommitdiff
path: root/lua/custom/lazy.lua
diff options
context:
space:
mode:
authortdback <tyler@tdback.net>2024-12-04 18:48:24 -0500
committertdback <tyler@tdback.net>2024-12-04 18:48:24 -0500
commit3b2163b821f4dbf1003804b9b19fd276dc4bc350 (patch)
tree809a679142eae8e7d3b4d2b3cf1426416883a7f9 /lua/custom/lazy.lua
initial commit to new repo
Diffstat (limited to 'lua/custom/lazy.lua')
-rw-r--r--lua/custom/lazy.lua20
1 files changed, 20 insertions, 0 deletions
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 },
+})