completion setup

This commit is contained in:
2024-09-30 05:17:31 +02:00
parent 437a8b0eac
commit 6a0e6be5c7
8 changed files with 125 additions and 0 deletions

1
lua/plugins/init.lua Normal file
View File

@@ -0,0 +1 @@
require("lua.plugins.lazy")

13
lua/plugins/lazy.lua Normal file
View 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)