[vimtegration] update the local.vimrc script so it uses build/Debug as the output folder

This commit is contained in:
S David 2024-08-02 12:49:05 -04:00
parent 775f8426c3
commit d3833cfea6
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -148,3 +148,4 @@ docs/
# clangd cache
.cache/
.vim/
build/*

View File

@ -34,7 +34,7 @@ if !has('nvim')
augroup end
endif
let s:build_dir = 'debug'
let s:build_dir = 'build/Debug'
let s:build_cores = 6
let s:make_args = '-C '. s:build_dir . ' -j ' . s:build_cores . ' ctest all'