X-Git-Url: https://git.danieliu.xyz/?p=dotfiles.git;a=blobdiff_plain;f=.vimrc;h=43c2132473b9df2847fe2b54f35213f17c1296f0;hp=e68fc91344609464e9703c1974d33d4425e2a244;hb=16ff07cf2c1fd43077b930bcdc926ae86abd935c;hpb=339415291a788dafe60c6e2503220e0482c44bf1 diff --git a/.vimrc b/.vimrc index e68fc91..43c2132 100644 --- a/.vimrc +++ b/.vimrc @@ -18,10 +18,10 @@ set expandtab set nrformats+=alpha "inc/dec alpha set hidden -" spell check -setlocal spell -set spelllang=en_us -set spellcapcheck= +" cursors depending on mode +let &t_EI = "\[2 q" "normal mode +let &t_SI = "\[6 q" "insert mode +let &t_SR = "\[4 q" "replace mode " conceal set conceallevel=2 @@ -39,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 @@ -60,7 +68,7 @@ function! StatusModeColor() else hi StatusLine cterm=None gui=None ctermfg=black ctermbg=DarkGrey endif - + return '' endfunction @@ -121,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' @@ -146,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' @@ -153,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