diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2024-02-13 17:58:07 -0500 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2024-02-13 17:58:07 -0500 |
commit | 3c7ee73a8036cfaba464640999303e157b19ec15 (patch) | |
tree | 852f2e51c85c41997f736a04d5a96d5db8efc54c /lua/cshift/lazy.lua | |
parent | a42bc21a1db924910129a259335fccdeb0080c34 (diff) | |
parent | 013dfcae215ae20fe30654247a91a026118deba4 (diff) |
merge laptop and desktop configs
Diffstat (limited to 'lua/cshift/lazy.lua')
-rw-r--r-- | lua/cshift/lazy.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lua/cshift/lazy.lua b/lua/cshift/lazy.lua index 0a9c83d..c20194e 100644 --- a/lua/cshift/lazy.lua +++ b/lua/cshift/lazy.lua @@ -1,4 +1,5 @@ local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" + if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", @@ -9,5 +10,6 @@ if not vim.loop.fs_stat(lazypath) then lazypath, }) end + vim.opt.rtp:prepend(lazypath) |