point init to default options
This commit is contained in:
parent
8c91b0bb43
commit
405d1fe61a
5
init.lua
5
init.lua
|
@ -1,4 +1,4 @@
|
||||||
require("options")
|
require("options.default")
|
||||||
require("keymaps")
|
require("keymaps")
|
||||||
|
|
||||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||||
|
@ -9,7 +9,8 @@ if not vim.loop.fs_stat(lazypath) then
|
||||||
"--filter=blob:none",
|
"--filter=blob:none",
|
||||||
"https://github.com/folke/lazy.nvim.git",
|
"https://github.com/folke/lazy.nvim.git",
|
||||||
"--branch=stable", -- latest stable release
|
"--branch=stable", -- latest stable release
|
||||||
lazypath, })
|
lazypath,
|
||||||
|
})
|
||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue