this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Disable cursor centering in terminal buffers

+15 -6
+2 -1
nvim/autoload/plugins.vim
··· 67 67 call minpac#add('hauleth/asyncdo.vim') 68 68 call minpac#add('romainl/vim-qf') 69 69 call minpac#add('romainl/vim-qlist') 70 - call minpac#add('w0rp/ale') 71 70 " }}} 72 71 " Utils {{{ 73 72 call minpac#add('tpope/vim-repeat') 74 73 call minpac#add('tpope/vim-unimpaired') 75 74 call minpac#add('wellle/targets.vim') 76 75 call minpac#add('kopischke/vim-fetch') 76 + call minpac#add('t9md/vim-choosewin') 77 + call minpac#add('mbbill/undotree') 77 78 " }}} 78 79 endfunc
+1 -1
nvim/autoload/statusline.vim
··· 4 4 function! statusline#quickfix() abort 5 5 let l:ret = '' 6 6 let l:ret .= get(g:, 'quickfix_pending') ? '♻️' : '' 7 - let l:ret .= exists('g:asyncdo_job') ? '⚙' : '' 7 + let l:ret .= exists('g:asyncdo') || exists('w:asyncdo') ? '⚙' : '' 8 8 9 9 return l:ret 10 10 endfunction
+1 -1
nvim/ftdetect/custom.vim
··· 1 - au BufRead,BufNewFile *.vue setlocal ft=javascript.html syn=html 1 + au BufRead,BufNewFile *.vue setlocal ft=html.javascript syn=html 2 2 au BufRead,BufNewFile *.ket setlocal ft=ketos.scheme syn=scheme
+11 -3
nvim/init.vim
··· 54 54 set iskeyword+=- 55 55 " }}} 56 56 " Show 80 column {{{ 57 - let &colorcolumn = &textwidth + 1 57 + set colorcolumn=+1 58 58 " }}} 59 59 " Split in CORRECT places {{{ 60 60 set splitright splitbelow ··· 155 155 " }}} 156 156 " Terminal {{{ 157 157 if has('nvim') 158 - nnoremap <C-q> <nop> 158 + nmap <C-q> <Esc> 159 159 nnoremap <C-q>c :<C-u>term<CR> 160 160 nnoremap <C-q>s :<C-u>split +term<CR> 161 161 nnoremap <C-q>v :<C-u>vsplit +term<CR> ··· 166 166 if executable('nvr') 167 167 let $EDITOR = 'nvr -cc split -c "set bufhidden=delete" --remote-wait' 168 168 endif 169 + 170 + augroup terminal_config 171 + au! 172 + au Termopen * setlocal scrolloff=0 173 + augroup END 169 174 endif 170 175 " }}} 171 - " Auto align windows {{{ 176 + " Split management {{{ 172 177 augroup align_windows 173 178 au! 174 179 au VimResized * wincmd = 175 180 augroup END 181 + 182 + nmap <C-w>q <plug>(choosewin) 183 + nmap <C-_> <plug>(choosewin) 176 184 " }}} 177 185 " Startify {{{ 178 186 let g:startify_list_order = ['sessions', 'dir']