[nvim] basic config
This commit is contained in:
parent
9fc89fe51f
commit
9e27886698
9 changed files with 194 additions and 0 deletions
13
.config/nvim/lua/config/lazy.lua
Normal file
13
.config/nvim/lua/config/lazy.lua
Normal file
|
@ -0,0 +1,13 @@
|
|||
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",
|
||||
"https://github.com/folke/lazy.nvim.git",
|
||||
"--branch=stable", -- latest stable release
|
||||
lazypath,
|
||||
})
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue