Update from personal

This commit is contained in:
Knyffen 2022-12-20 09:38:58 +01:00
parent 08bf84229b
commit 6bd09725d5

View File

@ -538,7 +538,8 @@ endif
\ '-Wfloat-equal', \ '-Wfloat-equal',
\ '-std=c99', \ '-std=c99',
\ '-I.', \ '-I.',
\ '-fopenmp' \ '-fopenmp',
\ '-lm'
\ ] \ ]
" Configure for C++ " Configure for C++
@ -551,7 +552,8 @@ endif
\ '-Wfloat-equal', \ '-Wfloat-equal',
\ '-std=c++17', \ '-std=c++17',
\ '-I.', \ '-I.',
\ '-fopenmp' \ '-fopenmp',
\ '-lm'
\ ] \ ]
" Configure for Rust " Configure for Rust
@ -872,7 +874,7 @@ augroup END
" Add 80 character line limit {{ " Add 80 character line limit {{
augroup textwrapping augroup textwrapping
au! au!
au FileType tex,markdown setlocal textwidth=80 " au FileType tex setlocal textwidth=80
augroup END augroup END
set colorcolumn=82 set colorcolumn=82
" }} " }}
@ -902,6 +904,10 @@ nnoremap <Leader>pm :call LoadPerlModule()<CR>
nnoremap <S-x> "_dh nnoremap <S-x> "_dh
" <C-H> is both Ctrl+H and Ctrl+Backspace
inoremap <C-H> <C-w>
inoremap <C-Del> <C-o>"_dw
" Enable vim-test with our perl test naming scheme " Enable vim-test with our perl test naming scheme
let g:test#perl#prove#file_pattern = 'Test.pm$' let g:test#perl#prove#file_pattern = 'Test.pm$'