Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • dotfiles/vim
1 result
Select Git revision
Show changes
Commits on Source (2)
{ {
"languageserver": { "languageserver": {
"clangd": {
"command": "clangd",
"args": ["--background-index"],
"rootPatterns": ["compile_flags.txt", "compile_commands.json", ".git/", ".hg/"],
"filetypes": ["c", "cpp", "objc", "objcpp"]
},
"ccls": { "ccls": {
"command": "ccls", "command": "ccls",
"filetypes": ["c", "cpp", "cuda", "objc", "objcpp"], "filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
...@@ -802,6 +796,7 @@ ...@@ -802,6 +796,7 @@
"gfmul", "gfmul",
"gpio", "gpio",
"gridlayout", "gridlayout",
"gsettings",
"gwstat", "gwstat",
"hackmd", "hackmd",
"hasharea", "hasharea",
......
...@@ -1032,7 +1032,7 @@ nnoremap <silent> <leader>p :<C-u>CocListResume<CR> ...@@ -1032,7 +1032,7 @@ nnoremap <silent> <leader>p :<C-u>CocListResume<CR>
" Rust Coc needs " Rust Coc needs
" :CocInstall coc-rust-analyzer coc-spell-checker coc-cspell-dicts coc-json coc-markdownlint coc-yaml coc-pyright coc-vimtex " :CocInstall coc-rust-analyzer coc-spell-checker coc-cspell-dicts coc-json coc-markdownlint coc-yaml coc-pyright coc-vimtex coc-clangd
" "
" For text linting to work via coc-diagnostic, install " For text linting to work via coc-diagnostic, install
" yay -S languagetool alex proselint write-good " yay -S languagetool alex proselint write-good
...@@ -1047,6 +1047,7 @@ let g:coc_global_extensions = [ ...@@ -1047,6 +1047,7 @@ let g:coc_global_extensions = [
\'coc-spell-checker', \'coc-spell-checker',
\'coc-ltex', \'coc-ltex',
\'coc-cspell-dicts', \'coc-cspell-dicts',
\'coc-clangd',
\'coc-vimtex'] \'coc-vimtex']
" Coc END " Coc END
......