comparison vimrc @ 92:afe2d02577c2

Small fixes to vimrc
author zegervdv <zegervdv@me.com>
date Thu, 07 Aug 2014 08:39:22 +0200
parents 97744720e080
children 8278ded5eb8c
comparison
equal deleted inserted replaced
91:97744720e080 92:afe2d02577c2
67 set formatoptions+=n " Recognize numbered lists 67 set formatoptions+=n " Recognize numbered lists
68 set formatoptions+=2 " Use indent from 2nd line of a paragraph 68 set formatoptions+=2 " Use indent from 2nd line of a paragraph
69 set formatoptions+=l " Don't break lines that are already long 69 set formatoptions+=l " Don't break lines that are already long
70 set formatoptions+=1 " Break before 1-letter words 70 set formatoptions+=1 " Break before 1-letter words
71 71
72 set complete+=kspell
73
72 set splitright 74 set splitright
73 set virtualedit=block 75 set virtualedit=block
74 set conceallevel=0 76 set conceallevel=0
75 77
76 set cryptmethod=blowfish 78 set cryptmethod=blowfish
121 inoremap <C-a> <C-o>I 123 inoremap <C-a> <C-o>I
122 inoremap <C-e> <C-o>A 124 inoremap <C-e> <C-o>A
123 125
124 nnoremap <C-a> ^ 126 nnoremap <C-a> ^
125 nnoremap <C-e> $ 127 nnoremap <C-e> $
128
129 nnoremap <C-s> <C-e>
126 130
127 nnoremap + <C-a> 131 nnoremap + <C-a>
128 132
129 " Jump out of inner bracket 133 " Jump out of inner bracket
130 inoremap <C-f> <ESC>%%a 134 inoremap <C-f> <ESC>%%a
529 let g:tex_comment_nospell=1 533 let g:tex_comment_nospell=1
530 let g:Tex_DefaultTargetFormat = 'pdf' 534 let g:Tex_DefaultTargetFormat = 'pdf'
531 let g:tex_flavor = 'latex' 535 let g:tex_flavor = 'latex'
532 let g:Tex_TreatMacViewerAsUNIX = 1 536 let g:Tex_TreatMacViewerAsUNIX = 1
533 let g:Tex_ExecuterUNIXViewerInForeground = 1 537 let g:Tex_ExecuterUNIXViewerInForeground = 1
534 " let g:Tex_ViewRule_pdf = 'open -a Preview' 538 let g:Tex_ViewRule_pdf = 'open -a Preview'
535 let g:Tex_ViewRule_pdf = 'open -a /Applications/TeX/TeXShop.app' 539 " let g:Tex_ViewRule_pdf = 'open -a /Applications/TeX/TeXShop.app'
536 540
537 let g:Tex_ViewRule_ps = 'open -a Preview' 541 let g:Tex_ViewRule_ps = 'open -a Preview'
538 542
539 nnoremap <leader>m :w<CR>:!rubber --pdf --warn all %<CR> 543 nnoremap <leader>m :w<CR>:!rubber --pdf --warn all %<CR>
540 " }}} 544 " }}}