-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Macos startup errors #10
Comments
When syncing plugins in doom nvim this info is given: and this is what is given on M1: |
Welp, that's not good. A lot of this comes from clang being nasty on MacOS. nvim-treesitter guys are working on it from what I know. Dany has a workaround here if you haven't seen that already, although I don't know how applicable it is in your scenario. If all fails then the best thing you can do is unfortunately wait i suppose |
The error points to fact that |
Hmm. I'd imagine doom has the scanner.cc set up properly. @molleweide you are running on the latest doom version right? |
I got such error too. This part of my config was problematic: local parser_configs = tsparsers.get_parser_configs()
parser_configs.norg = {
install_info = {
url = "https://github.com/vhyrro/tree-sitter-norg",
files = { "src/parser.c" },
branch = "main"
},
} as @JoeyGrajciar pointed, you need to add local parser_configs = tsparsers.get_parser_configs()
parser_configs.norg = {
install_info = {
url = "https://github.com/vhyrro/tree-sitter-norg",
files = { "src/parser.c", "src/scanner.cc" },
branch = "main"
},
} also, clang from macos can't compile it anyway. So,
you can then run |
Hi guys, my apologies for replying after so many days. After having pulled |
Yo!
I use doom-nvim and .norg i not working on neither of my old intel macbook pro or my new M1 macbook air.
M1 startup error
Intel startup error
The text was updated successfully, but these errors were encountered: