-
Nicolas Werner authored
This also changes headers to make section collapsible. The model wasn't actually returning anything for some of it roles, so sections didn't work...
Nicolas Werner authoredThis also changes headers to make section collapsible. The model wasn't actually returning anything for some of it roles, so sections didn't work...
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.exrc 816 B
:set expandtab
:set tabstop=4
:retab
:set shiftwidth=4
let g:ale_cpp_clang_options = '-std=c++14 -Wall -I .'
let g:ale_cpp_gcc_options = '-std=c++14 -Wall -I .'
let g:ale_cpp_cppcheck_options = '--std=c++14 --enable=style -I .'
let g:ale_cpp_clangtidy_options = '-I . -x c++'
let g:ale_cpp_cpplint_options = '-I .'
"\ 'cpp': ['g++', 'cppcheck', 'cpplint', 'clang', 'clangtidy'],
let g:ale_linters = {
\ 'cpp': [ 'g++', 'cppcheck', 'cpplint', 'clang'],
\}
"let g:ale_cpp_clang_options = '-I '.expand('<sfile>:p:h')
"let g:ale_cpp_gcc_options = '-I '.expand('<sfile>:p:h')
"let g:ale_cpp_cppcheck_options = '-I '.expand('<sfile>:p:h')
"let g:ale_cpp_clangtidy_options = '-I '.expand('<sfile>:p:h')
"let g:ale_cpp_cpplint_options = '-I '.expand('<sfile>:p:h')
"echo expand("%:pwd")
"echo expand('<sfile>:p:h')