Neorg parser only works after :checkhealth vim.treesitter #49
-
Beta Was this translation helpful? Give feedback.
Answered by
WaddlesPlays
Apr 30, 2025
Replies: 2 comments 2 replies
-
hey 👋 The error message says that the libstdc++.so.6 library is missing, so it's definitely related to your environment. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Took me a while to sit down and experiment, I was indeed able to get it working by adding the following to extraWrapperArgs = [
# ensure libstdc++ is found by the linker, fixes norg parser
"--prefix" "LD_LIBRARY_PATH" ":" "${pkgs.gcc.cc.lib}/lib"
]; sorry for the noob question, thanks for the help 😅 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
WaddlesPlays
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Took me a while to sit down and experiment, I was indeed able to get it working by adding the following to
programs.neovim
:sorry for the noob question, thanks for the help 😅