Nvim config initial

This commit is contained in:
Pablu23
2024-05-18 15:12:46 +02:00
commit cd8c24bb2e
14 changed files with 214 additions and 0 deletions

16
init.lua Normal file
View File

@@ -0,0 +1,16 @@
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)
require("vim-options")
require("lazy").setup("plugins")