├── .bashrc ├── .curlrc ├── .gf ├── api-keys.json ├── aws-keys.json ├── base64.json ├── copyright.json ├── cors.json ├── debug-pages.json ├── firebase.json ├── fw.json ├── go-functions.json ├── http-auth.json ├── interesting-files.json ├── js-sinks.json ├── json-sec.json ├── meg-headers.json ├── php-curl.json ├── php-errors.json ├── php-serialized.json ├── php-sinks.json ├── php-sources.json ├── s3-buckets.json ├── sec.json ├── servers.json ├── strings.json ├── takeovers.json ├── truffle.json ├── upload-fields.json └── urls.json ├── .gitconfig ├── .gitignore ├── .inputrc ├── .vim ├── UltiSnips │ └── php.snippets ├── ftdetect │ └── go.vim ├── ftplugin │ ├── go.vim │ ├── javascript.vim │ ├── lua.vim │ ├── markdown.vim │ ├── php.vim │ ├── python.vim │ ├── ruby.vim │ ├── rust.vim │ ├── sh.vim │ └── yaml.vim ├── init.vim └── syntax │ ├── mkd.vim │ └── php.vim ├── .vimrc ├── README.mkd ├── clone-github.sh ├── git-prompt.sh ├── go-setup.sh ├── scripts ├── acao ├── aws-key-check ├── bad-buckets ├── burp ├── check-cname ├── check-cnames.sh ├── find-git-dump ├── fixpaste ├── fixwm ├── ghclone ├── ghgrep ├── git-dump ├── highlight ├── jss ├── lock ├── rm-images ├── screencast ├── shrug ├── ss ├── topservers ├── url-to-domain └── vimprev └── setup.sh /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.bashrc -------------------------------------------------------------------------------- /.curlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.curlrc -------------------------------------------------------------------------------- /.gf/api-keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/api-keys.json -------------------------------------------------------------------------------- /.gf/aws-keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/aws-keys.json -------------------------------------------------------------------------------- /.gf/base64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/base64.json -------------------------------------------------------------------------------- /.gf/copyright.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/copyright.json -------------------------------------------------------------------------------- /.gf/cors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/cors.json -------------------------------------------------------------------------------- /.gf/debug-pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/debug-pages.json -------------------------------------------------------------------------------- /.gf/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/firebase.json -------------------------------------------------------------------------------- /.gf/fw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/fw.json -------------------------------------------------------------------------------- /.gf/go-functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/go-functions.json -------------------------------------------------------------------------------- /.gf/http-auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/http-auth.json -------------------------------------------------------------------------------- /.gf/interesting-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/interesting-files.json -------------------------------------------------------------------------------- /.gf/js-sinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/js-sinks.json -------------------------------------------------------------------------------- /.gf/json-sec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/json-sec.json -------------------------------------------------------------------------------- /.gf/meg-headers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/meg-headers.json -------------------------------------------------------------------------------- /.gf/php-curl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/php-curl.json -------------------------------------------------------------------------------- /.gf/php-errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/php-errors.json -------------------------------------------------------------------------------- /.gf/php-serialized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/php-serialized.json -------------------------------------------------------------------------------- /.gf/php-sinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/php-sinks.json -------------------------------------------------------------------------------- /.gf/php-sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/php-sources.json -------------------------------------------------------------------------------- /.gf/s3-buckets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/s3-buckets.json -------------------------------------------------------------------------------- /.gf/sec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/sec.json -------------------------------------------------------------------------------- /.gf/servers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/servers.json -------------------------------------------------------------------------------- /.gf/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/strings.json -------------------------------------------------------------------------------- /.gf/takeovers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/takeovers.json -------------------------------------------------------------------------------- /.gf/truffle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/truffle.json -------------------------------------------------------------------------------- /.gf/upload-fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/upload-fields.json -------------------------------------------------------------------------------- /.gf/urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gf/urls.json -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.inputrc -------------------------------------------------------------------------------- /.vim/UltiSnips/php.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.vim/UltiSnips/php.snippets -------------------------------------------------------------------------------- /.vim/ftdetect/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.vim/ftdetect/go.vim -------------------------------------------------------------------------------- /.vim/ftplugin/go.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.vim/ftplugin/go.vim -------------------------------------------------------------------------------- /.vim/ftplugin/javascript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.vim/ftplugin/javascript.vim -------------------------------------------------------------------------------- /.vim/ftplugin/lua.vim: -------------------------------------------------------------------------------- 1 | map ; :!lua % 2 | -------------------------------------------------------------------------------- /.vim/ftplugin/markdown.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.vim/ftplugin/markdown.vim -------------------------------------------------------------------------------- /.vim/ftplugin/php.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.vim/ftplugin/php.vim -------------------------------------------------------------------------------- /.vim/ftplugin/python.vim: -------------------------------------------------------------------------------- 1 | map ; :!python % 2 | -------------------------------------------------------------------------------- /.vim/ftplugin/ruby.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.vim/ftplugin/ruby.vim -------------------------------------------------------------------------------- /.vim/ftplugin/rust.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.vim/ftplugin/rust.vim -------------------------------------------------------------------------------- /.vim/ftplugin/sh.vim: -------------------------------------------------------------------------------- 1 | map ; :!./% 2 | -------------------------------------------------------------------------------- /.vim/ftplugin/yaml.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.vim/ftplugin/yaml.vim -------------------------------------------------------------------------------- /.vim/init.vim: -------------------------------------------------------------------------------- 1 | /home/tom/etc/.vimrc -------------------------------------------------------------------------------- /.vim/syntax/mkd.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.vim/syntax/mkd.vim -------------------------------------------------------------------------------- /.vim/syntax/php.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.vim/syntax/php.vim -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/.vimrc -------------------------------------------------------------------------------- /README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/README.mkd -------------------------------------------------------------------------------- /clone-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/clone-github.sh -------------------------------------------------------------------------------- /git-prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/git-prompt.sh -------------------------------------------------------------------------------- /go-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/go-setup.sh -------------------------------------------------------------------------------- /scripts/acao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/acao -------------------------------------------------------------------------------- /scripts/aws-key-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/aws-key-check -------------------------------------------------------------------------------- /scripts/bad-buckets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/bad-buckets -------------------------------------------------------------------------------- /scripts/burp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/burp -------------------------------------------------------------------------------- /scripts/check-cname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/check-cname -------------------------------------------------------------------------------- /scripts/check-cnames.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | xargs -P20 -n1 -I{} check-cname {} 3 | -------------------------------------------------------------------------------- /scripts/find-git-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/find-git-dump -------------------------------------------------------------------------------- /scripts/fixpaste: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | printf "\e[?2004l" 3 | -------------------------------------------------------------------------------- /scripts/fixwm: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | xsetroot -solid black 3 | setxkbmap gb 4 | -------------------------------------------------------------------------------- /scripts/ghclone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/ghclone -------------------------------------------------------------------------------- /scripts/ghgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/ghgrep -------------------------------------------------------------------------------- /scripts/git-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/git-dump -------------------------------------------------------------------------------- /scripts/highlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/highlight -------------------------------------------------------------------------------- /scripts/jss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/jss -------------------------------------------------------------------------------- /scripts/lock: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gnome-screensaver-command --lock 3 | -------------------------------------------------------------------------------- /scripts/rm-images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/rm-images -------------------------------------------------------------------------------- /scripts/screencast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/screencast -------------------------------------------------------------------------------- /scripts/shrug: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo -n "¯\_(ツ)_/¯" | xclip -selection c 3 | -------------------------------------------------------------------------------- /scripts/ss: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gnome-screenshot -a 3 | 4 | 5 | -------------------------------------------------------------------------------- /scripts/topservers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/topservers -------------------------------------------------------------------------------- /scripts/url-to-domain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/scripts/url-to-domain -------------------------------------------------------------------------------- /scripts/vimprev: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | VIMENV=prev vim $@ 3 | -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomnomnom/dotfiles/HEAD/setup.sh --------------------------------------------------------------------------------