ayamir / nvimdots

A well configured and structured Neovim.
BSD 3-Clause "New" or "Revised" License
2.94k stars 461 forks source link

No C complier found! #148

Closed Athrun-Judah closed 2 years ago

Athrun-Judah commented 2 years ago
  1. 在终端直接输入nvim,
  2. 然后运行:TSInstall 安装任何东西都会报错No C complier found! "cc", "gcc", "clang", "cl" , "zig" are not executable.

-操作系统:Windows11 wsl2 Ubuntu22.04tls -‘nvim’版本:0.7.0 -‘nvim’安装方式:git clone neovim 0.7.0版本解压安装

另:我想安装前端的环境,比如react,但是语法不会提示react的一些函数方法,在jsx/tsx里html标签也不会提示和补全,这个该如何配置?

ayamir commented 2 years ago

这个问题应该是你没装gcc,g++,make,cmake这些编译工具导致的,你搜一下Ubuntu上面怎么装吧 react这个你要装对应的Lsp才能

Athrun-Judah commented 2 years ago

这个问题应该是你没装gcc,g++,make,cmake这些编译工具导致的,你搜一下Ubuntu上面怎么装吧 react这个你要装对应的Lsp才能

那我不用c这些编译工具是否可以不安装,还是说这些编译工具也是必须的?如果不安装的话在哪将这些配置取消掉?

ayamir commented 2 years ago

这是必要的,因为Treesitter的语法解析器需要这些编译工具才能正常运行

Athrun-Judah commented 2 years ago

好的,非常感谢解答