Default fuzzy find too clever for old laptops (missing SIMD)
This commit is contained in:
parent
f7d5e70362
commit
85206b2535
|
|
@ -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 #
|
||||
|
|
|
|||
Loading…
Reference in New Issue