1
0
Fork 0

Compare commits

...

2 commits

Author SHA1 Message Date
014fd67de3 Configure helix to use ccls 2024-03-21 10:05:38 +01:00
8a7534a994 Replace clangd with ccls 2024-03-21 10:05:02 +01:00
3 changed files with 9 additions and 3 deletions

4
.gitignore vendored
View file

@ -2,5 +2,5 @@
result result
result-* result-*
# Clangd cache # Ccls cache
.cache/clangd .ccls-cache/

6
.helix/languages.toml Normal file
View file

@ -0,0 +1,6 @@
[[language]]
name = "c"
language-servers = [ "ccls" ]
[language-server.ccls]
command = "ccls"

View file

@ -16,7 +16,7 @@
name = "3ds-devshell"; name = "3ds-devshell";
packages = with nixpkgs.legacyPackages.${system}; [ packages = with nixpkgs.legacyPackages.${system}; [
gnumake gnumake
clang-tools ccls
( (
writeShellScriptBin "generateClangCompileCommands" '' writeShellScriptBin "generateClangCompileCommands" ''
make clean make clean