This commit is contained in:
Robert Altner 2024-07-16 10:01:56 +02:00
parent 9816bfb18d
commit 46edf6566d
No known key found for this signature in database
GPG key ID: 58794C52DAF9EAD8
4 changed files with 11 additions and 1 deletions

View file

@ -51,3 +51,10 @@ let g:coc_snippet_next = '<tab>'
highlight LineNr guifg=#fcc35a
set noexpandtab
if has('python')
map <C-K> :pyf /usr/share/clang/clang-format.py<cr>
imap <C-K> <c-o>:pyf /usr/share/clang/clang-format.py<cr>
elseif has('python3')
map <C-K> :py3f /usr/share/clang/clang-format.py<cr>
imap <C-K> <c-o>:py3f /usr/share/clang/clang-format.py<cr>
endif