X-Git-Url: https://git.danieliu.xyz/?p=dotfiles.git;a=blobdiff_plain;f=.vimrc;h=43c2132473b9df2847fe2b54f35213f17c1296f0;hp=62c1fb4973480c8af6c16114f516d13187726c71;hb=16ff07cf2c1fd43077b930bcdc926ae86abd935c;hpb=d5357941de0effbbea612fde4f31b2c9a0bfc716 diff --git a/.vimrc b/.vimrc index 62c1fb4..43c2132 100644 --- a/.vimrc +++ b/.vimrc @@ -23,11 +23,6 @@ let &t_EI = "\[2 q" "normal mode let &t_SI = "\[6 q" "insert mode let &t_SR = "\[4 q" "replace mode -" spell check -setlocal spell -set spelllang=en_us -set spellcapcheck= - " conceal set conceallevel=2 @@ -44,9 +39,17 @@ let g:netrw_liststyle = 3 let g:netrw_banner = 0 let g:netrw_winsize = 25 +" spell check +setlocal spell +set spelllang=en_us +set spellcapcheck= + +" accept first spell check fix +map z 1z= + " View whitespace map s :set list! -set lcs=space:· +set listchars=tab:▸\ ,space:·,eol:¬ " colors hi Conceal ctermbg=Black @@ -65,7 +68,7 @@ function! StatusModeColor() else hi StatusLine cterm=None gui=None ctermfg=black ctermbg=DarkGrey endif - + return '' endfunction @@ -126,6 +129,7 @@ Plug 'lervag/vimtex' Plug 'PietroPate/vim-tex-conceal' Plug 'jiangmiao/auto-pairs' Plug 'tpope/vim-commentary' +Plug 'rlue/vim-barbaric' " Plug 'ptzz/lf.vim' " Plug 'voldikss/vim-floaterm' @@ -151,6 +155,9 @@ let g:tex_conceal='abdmgs' let g:vimtex_compiler_latexmk = { \'build_dir': '/home/pinosaur/.cache/latexaux/', \} + " \'options': [ + " \ '-shell-escape', + " \], " Ctrlp " let g:ctrlp_cmd='CtrlPTag' @@ -158,5 +165,9 @@ let g:vimtex_compiler_latexmk = { " Lf " let g:lf_replace_netrw = 1 " weird behavior rn +" vim-barbaric +let g:barbaric_ime = 'ibus' +set ttimeoutlen=0 + " Run after plugins autocmd FileType * set formatoptions-=o