point init to default options

This commit is contained in:
Andrzej Stepien 2024-03-14 14:12:31 +01:00
parent 8c91b0bb43
commit 405d1fe61a
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
require("options")
require("options.default")
require("keymaps")
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
@ -9,7 +9,8 @@ if not vim.loop.fs_stat(lazypath) then
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath, })
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)