this repo has no description
1
fork

Configure Feed

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

Use Wahoo

+126 -15
+4 -4
conkyrc
··· 39 39 40 40 uppercase no 41 41 42 - default_color FFFFFF 42 + default_color ed0501 43 43 44 44 TEXT 45 - ${voffset 10}${font Roboto Thin:size=30}${time %A}${font}${voffset -10} 46 - ${voffset 10}${font Roboto Thin:size=30}${time %e} ${time %B}${font}${voffset -10} 47 - ${voffset 10}${font Roboto Thin:size=100}${time %H:%M}${font}${voffset -10} 45 + ${voffset 10}${font Roboto:style=Thin:size=30}${time %A}${font}${voffset -10} 46 + ${voffset 10}${font Roboto:style=Thin:size=30}${time %d} ${time %B}${font}${voffset -10} 47 + ${voffset 10}${font Roboto:style=Thin:size=100}${time %H:%M}${font}${voffset -10}
+3
functions/-.fish
··· 1 + function - 2 + cd - 3 + end
+3
functions/_.fish
··· 1 + function _ 2 + less -IRXNx4 $argv 3 + end
+4
functions/b.fish
··· 1 + function b --wraps bundle 2 + bundle $argv 3 + end 4 +
+3
functions/be.fish
··· 1 + function be 2 + bundle exec $argv 3 + end
+3
functions/ca.fish
··· 1 + function ca 2 + cargo $args 3 + end
+5
functions/color-test.fish
··· 1 + function color-test 2 + for code in (seq 0 255) 3 + echo -e "\e[00;38;5;"$code"m $code: Test" 4 + end 5 + end
+3
functions/compose.fish
··· 1 + function compose 2 + docker-compose $argv; 3 + end
+3
functions/e.fish
··· 1 + function e -d "Run $EDITOR with given file" --wraps $EDITOR 2 + eval "$EDITOR $argv" 3 + end
+3
functions/g.fish
··· 1 + function g --description 'Less typing more work!' --wraps 'git' 2 + git $argv 3 + end
+3
functions/grep.fish
··· 1 + function grep --description 'Search for a regexp in file(s)' 2 + command grep --color=auto $argv 3 + end
+3
functions/map.fish
··· 1 + function map 2 + xargs -n1 $argv 3 + end
+11
functions/mcd.fish
··· 1 + function mcd --description="Create a directory and set CWD" 2 + command mkdir $argv 3 + if test $status = 0 4 + switch $argv[(count $argv)] 5 + case '-*' 6 + case '*' 7 + cd $argv[(count $argv)] 8 + return 9 + end 10 + end 11 + end
+3
functions/most-used.fish
··· 1 + function most-used --description 'Print most used commands' 2 + history | awk '{print $1}' | sort | uniq -c | sort -rn | head $argv 3 + end
+3
functions/p.fish
··· 1 + function p 2 + pretty $argv; 3 + end
+3
functions/paste.fish
··· 1 + function paste -d 'Print content of clipboard' 2 + xsel -ob 3 + end
+3
functions/pretty.fish
··· 1 + function pretty 2 + pygmentize -f terminal -g $argv | less -RS 3 + end
+12
functions/rails.fish
··· 1 + function rails 2 + if [ -d './bin' ] 3 + ./bin/rails $argv 4 + else 5 + if not bundle exec rails $argv 6 + echo 'You are not in Rails project' 7 + return 1 8 + else 9 + return $status 10 + end 11 + end 12 + end
+7
functions/rake.fish
··· 1 + function rake 2 + if begin; [ -d './bin' ]; and [ -x './bin/rake' ]; end 3 + ./bin/rake $argv 4 + else 5 + bundle exec rake $argv; or command rake 6 + end 7 + end
+3
functions/rawk.fish
··· 1 + function rawk 2 + ruby -ane $argv 3 + end
+3
functions/rzlib-base64.fish
··· 1 + function rzlib-base64 2 + ruby -rzlib -rbase64 -e 'puts Base64.encode64(Zlib::Deflate.deflate(ARGF.read))' $argv; 3 + end
+4
functions/serve.fish
··· 1 + function serve --description 'Create simple static files server' 2 + # ruby -run -e httpd . -p 8000 $argv 3 + busybox httpd -f -p 8000 $argv 4 + end
+3
functions/stop.fish
··· 1 + function stop 2 + kill -9 (ps ax | grep $argv[1] | grep -v 'grep' | awk '{print $1}') 3 + end
+4
functions/work.fish
··· 1 + function work 2 + set project (basename (git rev-parse --show-toplevel)) 3 + time -f '%E' -- tmux new -s $project ; or time -f '%E' -- tmux attach -t $project 4 + end
+2
init.fish
··· 1 + set fish_greeting (fortune zen) 2 + set fish_key_bindings fish_vi_key_bindings
+13 -4
install
··· 16 16 echo -e "\t$out\t\t$typ" 17 17 "${typ}-fetch" "$out" "$url" > /dev/null 18 18 if [ -n "$build" ]; then 19 - pushd "$out" 20 - $build 21 - popd 19 + if [ -d "$out" ]; then 20 + pushd "$out" 21 + sh -c "$build" 22 + popd 23 + else 24 + sh -c "$build" -- "$out" 25 + fi 22 26 fi 23 27 } 24 28 ··· 55 59 current=$($JQ ".[\"$path\"]" <<< "$PACKAGES") 56 60 for repo in $($JQ -r ". | keys[]" <<< "$current") 57 61 do 58 - fetch "$($JQ ".[\"$repo\"]" <<< "$current")" "$path/$repo" 62 + fetch "$($JQ ".[\"$repo\"]" <<< "$current")" "$path/$repo" & 59 63 done 60 64 done 65 + 66 + for job in $(jobs -p) 67 + do 68 + wait $job 69 + done
+2 -1
packages.json
··· 1 1 { 2 2 "bin": { 3 - "lein": { "type": "curl", "url": "https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein", "build": "chmod +x bin/lein" } 3 + "lein": { "type": "curl", "url": "https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein", "build": "chmod +x $1" } 4 4 }, 5 5 "vim/autoload": { 6 6 "pathogen.vim": { "type": "curl", "url": "https://tpo.pe/pathogen.vim" } ··· 13 13 "delimmate": { "type": "git", "url": "https://github.com/Raimondi/delimitMate.git" }, 14 14 "docker": { "type": "git", "url": "https://github.com/ekalinin/Dockerfile.vim.git" }, 15 15 "editorconfig": { "type": "git", "url": "https://github.com/editorconfig/editorconfig-vim.git" }, 16 + "elixir": { "type": "git", "url": "https://github.com/elixir-lang/vim-elixir.git" }, 16 17 "emmet": { "type": "git", "url": "https://github.com/mattn/emmet-vim.git" }, 17 18 "fish": { "type": "git", "url": "https://github.com/dag/vim-fish.git" }, 18 19 "fugitive": { "type": "git", "url": "https://github.com/tpope/vim-fugitive.git" },
+1
vim/ftdetect/html.vim
··· 1 + au BufRead,BufNewFile *.hbs setfiletype html
+4 -3
vim/ftplugin/ruby.vim
··· 1 - map <F9> :w !ruby -cw<CR> 1 + noremap <F9> :w !ruby -cw<CR> 2 + noremap <F12> :!ripper-tags -f .tags -R . --exclude vendor<CR> 3 + 4 + setlocal omnifunc=rubycomplete#Complete 2 5 3 6 let g:rubycomplete_buffer_loading = 0 4 7 let g:rubycomplete_rails = 1 5 8 let g:rubycomplete_classes_in_global = 1 6 9 7 10 imap ,, => 8 - 9 - setlocal omnifunc=rubycomplete#Complete 10 11 11 12 let g:syntastic_ruby_checkers = ['rubocop', 'jruby', 'mri']
+2
vim/ftplugin/rust.vim
··· 1 1 compiler cargo 2 2 3 + setl colorcolumn=100 4 + 3 5 noremap <leader>rb :call VimuxRunCommand("clear; cargo build")<CR> 4 6 noremap <leader>rt :call VimuxRunCommand("clear; cargo test")<CR>
+2 -2
vim/plugin/tmux.vim
··· 1 1 let g:tmux_navigator_no_mappings = 1 2 2 3 3 nnoremap <silent> <C-h> :TmuxNavigateLeft<cr> 4 - nnoremap <silent> <C-k> :TmuxNavigateDown<cr> 5 - nnoremap <silent> <C-j> :TmuxNavigateUp<cr> 4 + nnoremap <silent> <C-k> :TmuxNavigateUp<cr> 5 + nnoremap <silent> <C-j> :TmuxNavigateDown<cr> 6 6 nnoremap <silent> <C-l> :TmuxNavigateRight<cr> 7 7 nnoremap <silent> <C-\> :TmuxNavigatePrevious<cr> 8 8
+1 -1
vimrc
··· 169 169 nmap wc <Plug>(choosewin) 170 170 171 171 " Ctrl-F12 to generate ctags for current project 172 - noremap <silent> <F12> :!ctags -f .tags .<CR> 172 + noremap <silent> <F12> :!ctags -f .tags -R .<CR> 173 173 174 174 " Yanks 175 175 noremap <Leader>p "+p