switched to a submodule
This commit is contained in:
commit
fdf977246d
14 changed files with 276 additions and 0 deletions
22
init.lua
Normal file
22
init.lua
Normal file
|
@ -0,0 +1,22 @@
|
|||
vim.g.loaded_netrw = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
|
||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not vim.loop.fs_stat(lazypath) then
|
||||
vim.fn.system({
|
||||
"git",
|
||||
"clone",
|
||||
"--filter=blob:none",
|
||||
"https://github.com/folke/lazy.nvim.git",
|
||||
"--branch=stable", -- latest stable release
|
||||
lazypath,
|
||||
})
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
require('lazy').setup({ { import = "plugins" } })
|
||||
|
||||
require("sets")
|
||||
require("remaps")
|
||||
|
||||
vim.notify("starting nvim 🏕️")
|
Loading…
Add table
Add a link
Reference in a new issue