aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2022-07-21 10:48:05 +0200
committerKarel Kočí <cynerd@email.cz>2022-07-21 10:48:05 +0200
commitbee016427d4e06c9dc4ecfefeccf8bac01bb6fc2 (patch)
treef2ab34379feecd5492c73262bd7e61787fd55921
parentf395c0a649d3f2ec2741dd25fb2d849a1c3b2e17 (diff)
downloadmyconfigs-bee016427d4e06c9dc4ecfefeccf8bac01bb6fc2.tar.gz
myconfigs-bee016427d4e06c9dc4ecfefeccf8bac01bb6fc2.tar.bz2
myconfigs-bee016427d4e06c9dc4ecfefeccf8bac01bb6fc2.zip
vim: I now use clangd and thus ccls options are no longer valid
-rw-r--r--vim/ftplugin/c.vim1
1 files changed, 0 insertions, 1 deletions
diff --git a/vim/ftplugin/c.vim b/vim/ftplugin/c.vim
index 6916f13..1b8989d 100644
--- a/vim/ftplugin/c.vim
+++ b/vim/ftplugin/c.vim
@@ -1,6 +1,5 @@
let b:ale_linters = ['clangd', 'cppcheck', 'flawfinder']
let b:ale_fixers = ['clang-format', 'remove_trailing_lines', 'trim_whitespace']
-let g:ale_c_ccls_init_options = {'cache': {'directory': '/tmp/ccls/cache'}, 'compilationDatabaseDirectory': 'build'}
let g:ale_c_parse_compile_commands = 1
nmap <F8> :ALENext<cr>