this repo has no description
1
fork

Configure Feed

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

feat: cleaner statusline

+11 -32
-26
bin/cargo-cov
··· 1 - #!/bin/bash 2 - PKGID="$(cargo pkgid)" 3 - [ -z "$PKGID" ] && exit 1 4 - 5 - ORIGIN="${PKGID%#*}" 6 - ORIGIN="${ORIGIN:7}" 7 - PKGNAMEVER="${PKGID##*/}" 8 - PKGNAME="${PKGNAMEVER%#*}" 9 - 10 - shift 11 - 12 - rm -rf $ORIGIN/target/cov 13 - 14 - # find $ORIGIN/target/debug -maxdepth 1 -executable -and -type f -delete 15 - cargo test --no-run || exit $? 16 - 17 - # EXE=($ORIGIN/target/debug/$PKGNAME-*) 18 - # if [ ${#EXE[@]} -ne 1 ]; then 19 - # echo 'Non-unique test file, retrying...' >2 20 - # rm -f ${EXE[@]} 21 - # cargo test --no-run || exit $? 22 - # fi 23 - 24 - 25 - find $ORIGIN/target/debug -maxdepth 1 -executable -and -type f -print0 \ 26 - | xargs -0I@ kcov --include-path=src --verify $ORIGIN/target/cov @ "$@"
+5 -5
nvim/init.vim
··· 6 6 call plug#begin('~/.local/nvim/plugins') 7 7 8 8 " Visual 9 - Plug 'bling/vim-bufferline' 9 + Plug 'ap/vim-buftabline' 10 10 Plug 'cocopon/iceberg.vim' 11 11 12 12 " Languages ··· 34 34 " Completion 35 35 Plug 'racer-rust/vim-racer' 36 36 Plug 'ludovicchabant/vim-gutentags' 37 + Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } 37 38 38 39 " Code manipulation 39 40 Plug 'tommcdo/vim-exchange' ··· 183 184 nnoremap ZX :cq<CR> 184 185 nnoremap ZB :bd<CR> 185 186 " }}} 186 - " Split line at cursor position {{{ 187 - nnoremap K i<CR><Esc>k$ 188 - nnoremap Q K 189 - " }}} 190 187 " Simplify switching to Command mode {{{ 191 188 noremap ; : 192 189 noremap : ; ··· 305 302 let g:limelight_conceal_guifg = '#666666' 306 303 " }}} 307 304 " }}} 305 + 306 + noremap Q gq 307 + let g:deoplete#enable_at_startup = 1
+6 -1
nvim/plugin/statusline.vim
··· 1 - let &statusline="%<%n >> %f %h%m%r << %{fugitive#statusline()}%=%4c:%l" 1 + let &statusline="%1*%<%2n%* » %2*%f%* «%=%4c:%l" 2 + 3 + hi! StatusLine ctermbg=245 ctermfg=0 guibg=#17171b guifg=#818596 4 + hi! StatusLineNC ctermbg=234 ctermfg=0 guibg=#3e445e guifg=#0f1117 5 + hi! User1 ctermbg=235 ctermfg=239 guibg=#1e2132 guifg=#444b71 6 + hi! User2 ctermbg=235 ctermfg=245 guibg=#1e2132 guifg=#444b71