Default fuzzy find too clever for old laptops (missing SIMD)

This commit is contained in:
cyteen 2026-03-16 19:58:20 +00:00
parent f7d5e70362
commit 85206b2535
1 changed files with 15 additions and 0 deletions

View File

@ -640,6 +640,21 @@ EOF
}
conf_print_blink_no_frizbee | tee "${LAZY_DEST}/blink_no_frizbee.lua"
#
conf_print_local_parser_path() {
cat <<EOF
return {
{
dir = "/home/default/.local/share/nvim/site", -- Points to the local path
lazy = false,
priority = 1000, -- Load this early
config = function()
vim.opt.runtimepath:append("/home/default/.local/share/nvim/site")
end,
}
}
EOF
}
conf_print_local_parser_path | tee "${LAZY_DEST}/local_parser_path.lua"
############################
# Hacking Below this Point #