this repo has no description
1
fork

Configure Feed

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

Nice Signify sigils

+50 -13
+1 -1
bin/cargo-cov
··· 23 23 24 24 25 25 find $ORIGIN/target/debug -maxdepth 1 -executable -and -type f -print0 \ 26 - | xargs -0I@ kcov --include-path=src $ORIGIN/target/cov @ "$@" 26 + | xargs -0I@ kcov --include-path=src --verify $ORIGIN/target/cov @ "$@"
+6 -2
nix/config.nix
··· 21 21 tools = pkgs.buildEnv { 22 22 name = "tools"; 23 23 paths = [ 24 - pkgs.silver-searcher 25 - pkgs.jq 26 24 pkgs.wrk 27 25 pkgs.tmux 26 + 27 + # CLI tools 28 28 pkgs.tldr 29 29 pkgs.direnv 30 + pkgs.silver-searcher 31 + pkgs.jq 32 + pkgs.python35Packages.pygments 33 + 30 34 universal-ctags 31 35 ]; 32 36 };
+20 -5
nvim/autoload/plug.vim
··· 11 11 " call plug#begin('~/.vim/plugged') 12 12 " 13 13 " " Make sure you use single quotes 14 - " Plug 'junegunn/seoul256.vim' 14 + " 15 + " " Shorthand notation; fetches https://github.com/junegunn/vim-easy-align 15 16 " Plug 'junegunn/vim-easy-align' 17 + " 18 + " " Any valid git URL is allowed 19 + " Plug 'https://github.com/junegunn/vim-github-dashboard.git' 16 20 " 17 21 " " Group dependencies, vim-snippets depends on ultisnips 18 22 " Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' ··· 20 24 " " On-demand loading 21 25 " Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } 22 26 " Plug 'tpope/vim-fireplace', { 'for': 'clojure' } 23 - " 24 - " " Using git URL 25 - " Plug 'https://github.com/junegunn/vim-github-dashboard.git' 26 27 " 27 28 " " Using a non-master branch 28 29 " Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' } ··· 40 41 " call plug#end() 41 42 " 42 43 " Then reload .vimrc and :PlugInstall to install plugins. 43 - " Visit https://github.com/junegunn/vim-plug for more information. 44 + " 45 + " Plug options: 46 + " 47 + "| Option | Description | 48 + "| ----------------------- | ------------------------------------------------ | 49 + "| `branch`/`tag`/`commit` | Branch/tag/commit of the repository to use | 50 + "| `rtp` | Subdirectory that contains Vim plugin | 51 + "| `dir` | Custom directory for the plugin | 52 + "| `as` | Use different name for the plugin | 53 + "| `do` | Post-update hook (string or funcref) | 54 + "| `on` | On-demand loading: Commands or `<Plug>`-mappings | 55 + "| `for` | On-demand loading: File types | 56 + "| `frozen` | Do not update unless explicitly specified | 57 + " 58 + " More information: https://github.com/junegunn/vim-plug 44 59 " 45 60 " 46 61 " Copyright (c) 2015 Junegunn Choi
+4 -1
nvim/init.vim
··· 25 25 Plug 'rust-lang/rust.vim' 26 26 Plug 'slim-template/vim-slim' 27 27 Plug 'vim-ruby/vim-ruby' 28 + Plug 'puppetlabs/puppet-syntax-vim' 28 29 29 30 " Git 30 31 Plug 'mhinz/vim-signify' ··· 62 63 Plug 'haya14busa/incsearch.vim' 63 64 64 65 " Build & Configuration 65 - Plug 'benekastah/neomake' 66 + Plug 'hauleth/neomake', { 'branch': 'fix/291' } 66 67 Plug 'dahu/EditorConfig' 67 68 Plug 'tpope/vim-projectionist' 68 69 ··· 74 75 Plug 'tpope/vim-repeat' 75 76 Plug 'tpope/vim-unimpaired' 76 77 Plug 'wellle/targets.vim' 78 + Plug 'junegunn/limelight.vim' 79 + Plug 'junegunn/goyo.vim' 77 80 78 81 call plug#end() 79 82 " }}}
+19
nvim/plugin/vcs.vim
··· 1 + let g:signify_sign_add = '▌' 2 + let g:signify_sign_delete = '▖' 3 + let g:signify_sign_delete_first_line = '▘' 4 + let g:signify_sign_change = '▐' 5 + let g:signify_sign_changedelete = '▞' 6 + 7 + let g:signify_sign_show_count = 0 8 + 9 + " highlight lines in Sy and vimdiff etc.) 10 + 11 + highlight DiffAdd ctermfg=10 12 + highlight DiffDelete ctermfg=9 13 + highlight DiffChange ctermfg=11 14 + 15 + " highlight signs in Sy 16 + 17 + highlight SignifySignAdd ctermfg=10 18 + highlight SignifySignDelete ctermfg=9 19 + highlight SignifySignChange ctermfg=11
-4
tmux/init.tmux
··· 32 32 set -g @plugin 'tmux-plugins/tpm' 33 33 set -g @plugin 'tmux-plugins/tmux-sensible' 34 34 35 - set -g @plugin 'tmux-plugins/tmux-sessionist' 36 - set -g @plugin 'tmux-plugins/tmux-resurrect' 37 35 set -g @plugin 'tmux-plugins/tmux-yank' 38 36 set -g @plugin 'tmux-plugins/tmux-sidebar' 39 - set -g @plugin 'tmux-plugins/tmux-copycat' 40 - set -g @plugin 'tmux-plugins/tmux-open' 41 37 42 38 # Initialize TMUX plugin manager 43 39 run "$HOME/.tmux/plugins/tpm/tpm"