update
[dotfiles.git] / .vimrc
diff --git a/.vimrc b/.vimrc
index df16a5d..aeea621 100644 (file)
--- a/.vimrc
+++ b/.vimrc
@@ -14,13 +14,14 @@ set smartcase
 set encoding=utf-8
 set tabstop=4
 set shiftwidth=4
-set expandtab
+" 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 = "\<Esc>[2 q" "normal mode
+let &t_SI = "\<Esc>[6 q" "insert mode
+let &t_SR = "\<Esc>[4 q" "replace mode
 
 " conceal
 set conceallevel=2
@@ -38,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 <leader>z 1z=<cr>
+
 " View whitespace
 map <leader>s :set list!<cr>
-set lcs=space:·
+set listchars=tab:▸\ ,space:·,eol:¬
 
 " colors
 hi Conceal ctermbg=Black
@@ -59,7 +68,7 @@ function! StatusModeColor()
     else
         hi StatusLine cterm=None gui=None ctermfg=black ctermbg=DarkGrey
     endif
-    
+
     return ''
 endfunction
 
@@ -120,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'
 
@@ -143,7 +153,7 @@ let g:vimtex_quickfix_mode=0
 let g:tex_conceal='abdmgs'
 
 let g:vimtex_compiler_latexmk = {
-    \'build_dir': '/home/pinosaur/.cache/latexaux/',
+    \'build_dir': '/home/pinosaur/.cache/latexaux/'
 \}
 
 " Ctrlp
@@ -152,5 +162,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