neovim/init.lua
2025-12-30 01:31:05 -06:00

39 lines
980 B
Lua

local config_path = vim.fn.stdpath("config")
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
local plugins = {}
vim.g.mapleader = " "
vim.g.maplocalleader = "\\"
map = vim.keymap.set
function plugin(spec)
table.insert(plugins, spec)
end
for _, file in ipairs(vim.fn.readdir(config_path .. "/lua", [[v:val =~ '\.lua$']])) do
require(file:gsub("%.lua$", ""))
end
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
if vim.v.shell_error ~= 0 then
vim.api.nvim_echo({
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
{ out, "WarningMsg" },
{ "\nPress any key to exit..." },
}, true, {})
vim.fn.getchar()
os.exit(1)
end
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
spec = {
plugins,
},
install = { colorscheme = { "habamax" } },
checker = { enabled = true },
})