This commit is contained in:
2024-06-20 20:28:11 -04:00
parent 9e2789030a
commit e66078a338
2 changed files with 19 additions and 1 deletions

6
.gitignore vendored
View File

@@ -1,2 +1,6 @@
/cmake-build-debug
/.idea /.idea
/.cache
/.ccls-cache
/compile_commands.json
/cmake-build-debug
/build

14
neovim.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
rm compile_commands.json
rm -rf cmake-build-debug/
rm -rf build/
rm -rf compile_commands.json
mkdir cmake-build-debug/
cd cmake-build-debug
cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 ../
cp compile_commands.json ../compile_commands.json
cd ..
clear
nvim