Neovim-from-scratch
Neovim-from-scratch copied to clipboard
I am having a few issues that I assume are related to this start up error: No C compiler found! "cc", "gcc", "clang", "cl", "zig" are not executable
By commenting out like you recommend in your youtube series, I have narrowed down the console error to be in tree sitter file
Problems I am having:
- I get no command mode completions
- Word search never gives results while file search works
- LspInstallInfo does nothing lsp is unkown command error
- Also I have a plugin folder that doesn't seem to be in your git repository
I am using cmder as my console if that has any relevance once again the error on start-up is:
No C compiler found! "cc", "gcc", "clang", "cl", "zig" are not executable
Here is the error I get when I try to use word search:
Can anyone help me 😢
@wakywayne so is gcc
installed can you do gcc
in your terminal if not install it
I had this same issue. I'm on windows tho. It went away after installing clang with choco install llvm
and adding this line to treesitter.lua
:
require 'nvim-treesitter.install'.compilers = { "clang" }