-- Set leader key before lazy -- vim.g.mapleader = " " -- vim.g.maplocalleader = " " -- Bootstrap lazy.nvim 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", lazypath, }) end vim.opt.rtp:prepend(lazypath) -- Load core configurations require("config.options") -- Basic vim options require("config.keymaps") -- Global keymaps require("config.lazy") -- Plugin specifications require("config.autocmds")