diff options
author | Karel Kočí <cynerd@email.cz> | 2024-03-13 10:52:06 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2024-03-13 10:52:06 +0100 |
commit | e511f8e110fa5200d667ebee2e7403dbe98721ef (patch) | |
tree | 2f35a8033bb77e22013c4ed80a7d6819485f8084 /config/nvim/ftplugin/cpp.vim | |
parent | 68cd653842a300081d54f0c539e32c8774f824a4 (diff) | |
download | myconfigs-e511f8e110fa5200d667ebee2e7403dbe98721ef.tar.gz myconfigs-e511f8e110fa5200d667ebee2e7403dbe98721ef.tar.bz2 myconfigs-e511f8e110fa5200d667ebee2e7403dbe98721ef.zip |
nvim: switch from ale and other tweaks
Diffstat (limited to 'config/nvim/ftplugin/cpp.vim')
-rw-r--r-- | config/nvim/ftplugin/cpp.vim | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/config/nvim/ftplugin/cpp.vim b/config/nvim/ftplugin/cpp.vim deleted file mode 100644 index 89944ea..0000000 --- a/config/nvim/ftplugin/cpp.vim +++ /dev/null @@ -1,8 +0,0 @@ -" This is for C but vim defines *.h as cpp type so here we have it -let b:ale_linters = ['ccls', 'cppcheck', 'flawfinder'] -let b:ale_fixers = ['clang-format', 'remove_trailing_lines', 'trim_whitespace'] -let g:ale_cpp_ccls_init_options = {'cache': {'directory': '/tmp/ccls/cache'}} -let g:ale_cpp_parse_compile_commands = 1 - -nmap <F8> :ALENext<cr> -nmap <F7> :ALEPrevious<cr> |