Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
vim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dotfiles
vim
Compare revisions
faed6a85b392b9cfb71a062a480f0f528e015f90 to da22a0dc3fc9636e87cd257d8fb648e79a59b491
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
dotfiles/vim
Select target project
No results found
da22a0dc3fc9636e87cd257d8fb648e79a59b491
Select Git revision
Swap
Target
dotfiles/vim
Select target project
dotfiles/vim
1 result
faed6a85b392b9cfb71a062a480f0f528e015f90
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Add coc-clangd to CoC
· 3b2f8144
Henrik Tjäder
authored
2 years ago
3b2f8144
Rework coc-config
· da22a0dc
Henrik Tjäder
authored
2 years ago
da22a0dc
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.config/nvim/coc-settings.json
+1021
-1026
1021 additions, 1026 deletions
.config/nvim/coc-settings.json
.vimrc
+2
-1
2 additions, 1 deletion
.vimrc
with
1023 additions
and
1027 deletions
.config/nvim/coc-settings.json
View file @
da22a0dc
{
{
"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"
,
...
...
This diff is collapsed.
Click to expand it.
.vimrc
View file @
da22a0dc
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.