More intelligent clang_format and tweak stuff

This commit is contained in:
Alex D. 2021-01-17 13:13:07 +00:00
parent 7985cc44f9
commit 76cbc9bfe8
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 7 additions and 6 deletions

13
vimrc
View File

@ -1,10 +1,10 @@
set mouse=a cb=unnamed,unnamedplus wim=longest,list,full backspace=indent,eol,start cmdheight=1 bg=dark nu rnu incsearch cot=menu si sta cpt=.,w,b,i tf foldmethod=syntax path+=** nocompatible sc nosmd cursorline listchars=trail,eol:,tab:\ list
set mouse=a cb=unnamed,unnamedplus wim=longest,list,full backspace=indent,eol,start cmdheight=1 bg=dark nu rnu incsearch cot=menu si sta cpt=.,w,b,i tf foldmethod=syntax path+=** nocompatible sc nosmd cursorline listchars=trail,eol:,tab:\ list directory=$HOME/.vim/swap//
filetype plugin indent on
syntax on
colorscheme delek
cnoremap w!! execute 'silent! write !sudo tee % >/dev/null' <bar> edit! <CR>
cnoremap i! execute 'silent! write !sudo make install' <CR>
cnoremap w!! execute 'silent! write !doas tee % >/dev/null' <bar> edit! <CR>
cnoremap i! execute 'silent! write !doas make install' <CR>
function! CleverTab()
if strpart( getline('.'), col('.')-2, 3) =~ '^\w'
if &completefunc
@ -22,11 +22,11 @@ inoremap <Tab> <C-R>=CleverTab()<CR>
autocmd FileType yaml setlocal sw=8 sts=8 expandtab
autocmd FileType tex command! Comp execute 'silent !rubber -d %' <bar> redraw!
autocmd FileType tex command! Comp execute 'silent !pdflatex %' <bar> redraw!
autocmd FileType less command! Comp execute 'silent !lessc % %:r.css' <bar> redraw!
autocmd FileType tex command! Compdoc execute 'silent !pandoc -t docx % -o %:r.docx' <bar> redraw!
let g:lsc_server_commands = {'java': 'jdtls', 'rust': 'rls', 'python': 'pyls','html': 'html-languageserver --stdio','less': 'css-languageserver --stdio','css': 'css-languageserver --stdio', 'cpp': { 'command': 'clangd', 'suppress_stderr': v:true }, 'c': { 'command': 'clangd', 'suppress_stderr': v:true }}
let g:lsc_server_commands = {'cpp': { 'command': 'clangd --completion-style=detailed --clang-tidy --all-scopes-completion -j=8 --background-index', 'suppress_stderr': v:true }, 'c': { 'command': 'clangd --completion-style=detailed --clang-tidy --all-scopes-completion -j=8 --background-index', 'suppress_stderr': v:true }}
let g:lsc_auto_map = v:true
let g:lsc_enable_autocomplete = v:true
@ -40,4 +40,5 @@ let g:airline_theme='term'
let g:clang_format#code_style = 'llvm'
let g:clang_format#detect_style_file = v:true
let g:clang_format#auto_format = v:false
let g:clang_format#auto_format = v:true
let g:clang_format#enable_fallback_style = 0