This commit is contained in:
2026-01-29 17:59:31 -10:00
parent 9f25569788
commit c9494906ca
3 changed files with 27 additions and 5 deletions
+11
View File
@@ -1,3 +1,14 @@
-- Version check: require Neovim 0.11+
if vim.fn.has("nvim-0.11") == 0 then
vim.api.nvim_echo({
{ "ERROR: ", "ErrorMsg" },
{ "This config requires Neovim 0.11 or higher.\n", "Normal" },
{ "WARNING: ", "WarningMsg" },
{ "Please update Neovim to use this configuration.", "Normal" },
}, true, {})
return
end
-- Set leader keys before lazy loads
vim.g.mapleader = " "
vim.g.maplocalleader = " "