-- (~/.config/nvim/lua/neoconf/lazy_init.lua) 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", lazypath, }) end vim.opt.rtp:prepend(lazypath) -- leaders AVANT lazy.setup (exigé par LazyVim) vim.g.mapleader = " " vim.g.maplocalleader = "," require("lazy").setup({ spec = { { "LazyVim/LazyVim", import = "lazyvim.plugins" }, { import = "neoconf.lazy" }, }, change_detection = { notify = false }, })