summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryushyin <yushyin@saga>2020-12-14 03:12:39 +0100
committeryushyin <yushyin@saga>2020-12-14 03:12:39 +0100
commit3dd18d3f62e402defb14d025ac9616d77e3453ab (patch)
tree4e319a09bcad01c3615a152235aabf490cbf3cb0
parentfe9cfa904195fec45446fc8ba693a43d0d519be5 (diff)
downloaddotfiles-igor-3dd18d3f62e402defb14d025ac9616d77e3453ab.tar.gz
dotfiles-igor-3dd18d3f62e402defb14d025ac9616d77e3453ab.tar.xz
Vim: Change ccls cache dir
-rw-r--r--vim/files/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/files/vimrc b/vim/files/vimrc
index c79c016..a7b5da3 100644
--- a/vim/files/vimrc
+++ b/vim/files/vimrc
@@ -108,7 +108,7 @@ if dein#tap('vim-lsp')
\ 'name': 'ccls',
\ 'cmd': {server_info->['ccls']},
\ 'root_uri': {server_info->lsp#utils#path_to_uri(lsp#utils#find_nearest_parent_file_directory(lsp#utils#get_buffer_path(), 'compile_commands.json'))},
- \ 'initialization_options': {'cache': {'directory': '/tmp/ccls/cache' }},
+ \ 'initialization_options': {'cache': {'directory': '/var/tmp/ccls/cache' }},
\ 'whitelist': ['c', 'cpp', 'objc', 'objcpp'],
\ })
endif