From 0b8ed8c29bdd5890df1a1f85dd1bdb43e88aaae7 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Fri, 29 Nov 2024 11:56:45 -0800 Subject: [PATCH] clangd config --- .gitignore | 1 + compile_commands.json | 44 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 .gitignore create mode 100644 compile_commands.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..16d3c4d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.cache diff --git a/compile_commands.json b/compile_commands.json new file mode 100644 index 0000000..808c8e5 --- /dev/null +++ b/compile_commands.json @@ -0,0 +1,44 @@ +[ + { + "arguments": [ + "/nix/store/vh9fsdhgxcnab2qk7vdp2palkkn6j3cp-gcc-wrapper-13.3.0/bin/cc", + "-c", + "-std=c99", + "-pedantic", + "-Wall", + "-Wno-deprecated-declarations", + "-Os", + "-I/usr/X11R6/include", + "-I/usr/include/freetype2", + "-D_DEFAULT_SOURCE", + "-D_BSD_SOURCE", + "-D_XOPEN_SOURCE=700L", + "-DVERSION=\"6.5\"", + "-DXINERAMA", + "drw.c" + ], + "directory": "/home/ravenshade/Documents/projects/dwm", + "file": "/home/ravenshade/Documents/projects/dwm/drw.c" + }, + { + "arguments": [ + "/nix/store/vh9fsdhgxcnab2qk7vdp2palkkn6j3cp-gcc-wrapper-13.3.0/bin/cc", + "-c", + "-std=c99", + "-pedantic", + "-Wall", + "-Wno-deprecated-declarations", + "-Os", + "-I/usr/X11R6/include", + "-I/usr/include/freetype2", + "-D_DEFAULT_SOURCE", + "-D_BSD_SOURCE", + "-D_XOPEN_SOURCE=700L", + "-DVERSION=\"6.5\"", + "-DXINERAMA", + "dwm.c" + ], + "directory": "/home/ravenshade/Documents/projects/dwm", + "file": "/home/ravenshade/Documents/projects/dwm/dwm.c" + } +]