├── .gitignore ├── LICENSE ├── README.md ├── agignore ├── asdfrc ├── bashrc ├── charts ├── NATO_Phonetic_And_Morse_Code_Alphabet.png ├── bigoposter.pdf └── vim_cheat_sheet_for_programmers_print.png ├── config ├── devdocs.json └── user.js ├── ctags ├── curlrc ├── default-gems ├── digrc ├── docs ├── cheatsheets │ ├── alpine.cheat │ ├── binary.cheat │ ├── clojure.cheat │ ├── compilers.cheat │ ├── compress-archive.cheat │ ├── csv.cheat │ ├── curl.cheat │ ├── disks.cheat │ ├── docker.cheat │ ├── env.cheat │ ├── ffmpeg.cheat │ ├── file.cheat │ ├── fun.cheat │ ├── git.cheat │ ├── go.cheat │ ├── gpg.cheat │ ├── groff.cheat │ ├── help.cheat │ ├── kafka.cheat │ ├── navigation.cheat │ ├── network-traffic.cheat │ ├── os-ports.cheat │ ├── os-processes.cheat │ ├── pager.cheat │ ├── pipes.cheat │ ├── postgres.cheat │ ├── scp.cheat │ ├── ssh.cheat │ ├── time.cheat │ ├── tmux.cheat │ ├── tools.cheat │ ├── uuid.cheat │ ├── vim.cheat │ ├── virtualbox.cheat │ └── workflow.cheat └── useful_commands.md ├── editrc ├── erlang ├── erlang ├── patch_remote.erl └── user_default.erl ├── gemrc ├── git └── configs │ └── companyname.example ├── gitattributes ├── gitconfig ├── gitignore_global ├── gnuplot ├── guides ├── easy-zsh-startup-profiling.adoc ├── gpg-move.adoc ├── project-wide-find-and-replace-vim.adoc ├── psql_cheatsheet.adoc ├── terminal-recording.adoc └── vim-server.adoc ├── hushlogin ├── iex.exs ├── inputrc ├── irbrc ├── jshintrc ├── macos ├── com.stratus3d.dotfiles.login.plist └── hammerspoon │ └── init.lua ├── mixins ├── aliases ├── asdf ├── functions ├── general ├── gitconfig.custom.example ├── grep ├── path └── shellrc.custom.example ├── my.cnf ├── psqlrc ├── ripgrep-ignore ├── ripgreprc ├── screenrc ├── scripts ├── erlang │ ├── install_swagger.sh │ └── sys_config_to_ct_config ├── generate_gitconfig.sh ├── generate_ripgreprc.sh ├── git │ ├── git-author-rewrite │ ├── git-branch-name │ ├── git-branch-search │ ├── git-branch-status │ ├── git-checkout-and-remove-untracked │ ├── git-commit-branch │ ├── git-files-modified-by │ ├── git-my-recent │ ├── git-recent-unmerged │ └── git-rm-merged-branches ├── gnuplot │ ├── annotate.gpi │ ├── black_and_white.gpi │ ├── csv.gpi │ ├── export.gpi │ ├── stratus3d.gpi │ ├── test.gpi │ └── thick_pastel.gpi ├── install │ ├── README.md │ ├── bats.sh │ ├── chirp.sh │ ├── debian │ │ ├── navi.sh │ │ ├── step │ │ └── tika │ ├── devdocs.sh │ ├── duplicati.sh │ ├── elvis.sh │ ├── erlangpl.sh │ ├── erlgrind.sh │ ├── erlyberly.sh │ ├── filmic_blender.sh │ ├── footswitch.sh │ ├── git-quick-stats.sh │ ├── gramps.sh │ ├── loki-cli │ ├── observer_cli.sh │ ├── prax.sh │ ├── recon.sh │ ├── redshift.sh │ ├── refactorerl.sh │ ├── relx.sh │ ├── restic.sh │ ├── scriptreplay_ng │ ├── st.sh │ ├── st │ │ └── theme.diff │ ├── sync.sh │ ├── syncd.sh │ ├── testssl.sh │ ├── translate-shell.sh │ ├── vial.sh │ ├── xulrunnner │ ├── yt-dlp │ └── zeal.sh ├── link.sh ├── setup.sh ├── setup │ ├── arch │ ├── darwin.sh │ ├── debian.sh │ ├── debian │ │ ├── gnome │ │ └── lxde │ ├── linux.sh │ ├── macos-defaults │ ├── packages.sh │ └── tmux.sh ├── tools │ ├── asdf-clean │ ├── base │ ├── bash-colors │ ├── calc │ ├── clone_all_bitbucket_repos │ ├── clone_all_github_repos │ ├── compiler_to_erlang_version │ ├── count_lines │ ├── csv2html │ ├── ct_latest │ ├── curltime │ ├── delete_vim_swap_files │ ├── docker-clean │ ├── docxform │ ├── dump_env │ ├── elixir-help │ ├── elixir_to_json │ ├── enable_locate │ ├── epmd_port_forwarder │ ├── erl_app │ ├── erlang_pretty_print │ ├── erlang_version_bump │ ├── flush_dns_cache │ ├── git-worktree-session │ ├── grab │ ├── haste │ ├── jssh │ ├── linux │ │ ├── open │ │ ├── pbcopy │ │ └── pbpaste │ ├── macos │ │ └── notify-send │ ├── network_controller │ ├── notes │ ├── ntimes │ ├── patterns │ ├── platform_name │ ├── port │ ├── reload-browser │ ├── remsh │ ├── remsh_with_custom │ ├── run_on_server │ ├── scanpdf │ ├── shrinkpdf │ ├── signal_printer │ ├── sshmux │ ├── ticket-name │ ├── tmuxinator │ ├── to_server │ ├── update_dotfiles │ ├── update_locate │ ├── webpage-to-ebook │ ├── website_downloader │ ├── wordlist │ ├── workflow │ ├── wthr │ ├── xfmt │ ├── xncode │ └── yaml_validator ├── upon_login.sh └── upon_login_custom.sh.example ├── templates ├── commit-template ├── erlang │ ├── application │ ├── common_test_hook │ ├── commontest │ ├── eqc_statem │ ├── escript │ ├── gen_event │ ├── gen_fsm │ ├── gen_server │ ├── gen_statem │ └── supervisor └── k9s │ └── skin.yml ├── terminal.app_profile ├── OneHalfLightMod.terminal └── Solarized Dark Yosemite.terminal ├── tmux.conf ├── tmuxinator └── default.yml ├── tool-versions ├── vim ├── UltiSnips │ ├── dot.snippets │ ├── elixir.snippets │ ├── erlang.snippets │ ├── go.snippets │ ├── make.snippets │ ├── python.snippets │ ├── ruby.snippets │ ├── sh.snippets │ └── vim.snippets ├── ftplugin │ ├── crontab.vim │ ├── css.vim │ ├── elixir.vim │ ├── erlang.vim │ ├── gitcommit.vim │ ├── less.vim │ ├── make.vim │ ├── markdown.vim │ ├── python.vim │ ├── ruby.vim │ ├── sass.vim │ ├── text.vim │ └── typescript.vim ├── plugins.vim ├── sortwords.vim ├── spell │ └── en.utf-8.add └── whitespace.vim ├── vimrc ├── zsh ├── git.zsh └── theme.zsh └── zshrc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /agignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/agignore -------------------------------------------------------------------------------- /asdfrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/asdfrc -------------------------------------------------------------------------------- /bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/bashrc -------------------------------------------------------------------------------- /charts/NATO_Phonetic_And_Morse_Code_Alphabet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/charts/NATO_Phonetic_And_Morse_Code_Alphabet.png -------------------------------------------------------------------------------- /charts/bigoposter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/charts/bigoposter.pdf -------------------------------------------------------------------------------- /charts/vim_cheat_sheet_for_programmers_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/charts/vim_cheat_sheet_for_programmers_print.png -------------------------------------------------------------------------------- /config/devdocs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/config/devdocs.json -------------------------------------------------------------------------------- /config/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/config/user.js -------------------------------------------------------------------------------- /ctags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/ctags -------------------------------------------------------------------------------- /curlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/curlrc -------------------------------------------------------------------------------- /default-gems: -------------------------------------------------------------------------------- 1 | bundler 2 | -------------------------------------------------------------------------------- /digrc: -------------------------------------------------------------------------------- 1 | # https://jvns.ca/blog/2021/12/04/how-to-use-dig/ 2 | +noall +answer 3 | -------------------------------------------------------------------------------- /docs/cheatsheets/alpine.cheat: -------------------------------------------------------------------------------- 1 | % alpine, linux, docker 2 | 3 | # List installed packages 4 | apk list -i 5 | -------------------------------------------------------------------------------- /docs/cheatsheets/binary.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/binary.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/clojure.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/clojure.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/compilers.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/compilers.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/compress-archive.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/compress-archive.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/csv.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/csv.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/curl.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/curl.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/disks.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/disks.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/docker.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/docker.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/env.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/env.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/ffmpeg.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/ffmpeg.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/file.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/file.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/fun.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/fun.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/git.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/git.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/go.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/go.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/gpg.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/gpg.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/groff.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/groff.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/help.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/help.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/kafka.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/kafka.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/navigation.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/navigation.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/network-traffic.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/network-traffic.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/os-ports.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/os-ports.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/os-processes.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/os-processes.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/pager.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/pager.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/pipes.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/pipes.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/postgres.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/postgres.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/scp.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/scp.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/ssh.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/ssh.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/time.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/time.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/tmux.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/tmux.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/tools.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/tools.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/uuid.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/uuid.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/vim.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/vim.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/virtualbox.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/virtualbox.cheat -------------------------------------------------------------------------------- /docs/cheatsheets/workflow.cheat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/cheatsheets/workflow.cheat -------------------------------------------------------------------------------- /docs/useful_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/docs/useful_commands.md -------------------------------------------------------------------------------- /editrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/editrc -------------------------------------------------------------------------------- /erlang/erlang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/erlang/erlang -------------------------------------------------------------------------------- /erlang/patch_remote.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/erlang/patch_remote.erl -------------------------------------------------------------------------------- /erlang/user_default.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/erlang/user_default.erl -------------------------------------------------------------------------------- /gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/gemrc -------------------------------------------------------------------------------- /git/configs/companyname.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/git/configs/companyname.example -------------------------------------------------------------------------------- /gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/gitattributes -------------------------------------------------------------------------------- /gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/gitconfig -------------------------------------------------------------------------------- /gitignore_global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/gitignore_global -------------------------------------------------------------------------------- /gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/gnuplot -------------------------------------------------------------------------------- /guides/easy-zsh-startup-profiling.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/guides/easy-zsh-startup-profiling.adoc -------------------------------------------------------------------------------- /guides/gpg-move.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/guides/gpg-move.adoc -------------------------------------------------------------------------------- /guides/project-wide-find-and-replace-vim.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/guides/project-wide-find-and-replace-vim.adoc -------------------------------------------------------------------------------- /guides/psql_cheatsheet.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/guides/psql_cheatsheet.adoc -------------------------------------------------------------------------------- /guides/terminal-recording.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/guides/terminal-recording.adoc -------------------------------------------------------------------------------- /guides/vim-server.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/guides/vim-server.adoc -------------------------------------------------------------------------------- /hushlogin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/hushlogin -------------------------------------------------------------------------------- /iex.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/iex.exs -------------------------------------------------------------------------------- /inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/inputrc -------------------------------------------------------------------------------- /irbrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/irbrc -------------------------------------------------------------------------------- /jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/jshintrc -------------------------------------------------------------------------------- /macos/com.stratus3d.dotfiles.login.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/macos/com.stratus3d.dotfiles.login.plist -------------------------------------------------------------------------------- /macos/hammerspoon/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/macos/hammerspoon/init.lua -------------------------------------------------------------------------------- /mixins/aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/mixins/aliases -------------------------------------------------------------------------------- /mixins/asdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/mixins/asdf -------------------------------------------------------------------------------- /mixins/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/mixins/functions -------------------------------------------------------------------------------- /mixins/general: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/mixins/general -------------------------------------------------------------------------------- /mixins/gitconfig.custom.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/mixins/gitconfig.custom.example -------------------------------------------------------------------------------- /mixins/grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/mixins/grep -------------------------------------------------------------------------------- /mixins/path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/mixins/path -------------------------------------------------------------------------------- /mixins/shellrc.custom.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/mixins/shellrc.custom.example -------------------------------------------------------------------------------- /my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/my.cnf -------------------------------------------------------------------------------- /psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/psqlrc -------------------------------------------------------------------------------- /ripgrep-ignore: -------------------------------------------------------------------------------- 1 | # This file is read by ripgrep 2 | -------------------------------------------------------------------------------- /ripgreprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/ripgreprc -------------------------------------------------------------------------------- /screenrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/screenrc -------------------------------------------------------------------------------- /scripts/erlang/install_swagger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/erlang/install_swagger.sh -------------------------------------------------------------------------------- /scripts/erlang/sys_config_to_ct_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/erlang/sys_config_to_ct_config -------------------------------------------------------------------------------- /scripts/generate_gitconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/generate_gitconfig.sh -------------------------------------------------------------------------------- /scripts/generate_ripgreprc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/generate_ripgreprc.sh -------------------------------------------------------------------------------- /scripts/git/git-author-rewrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/git/git-author-rewrite -------------------------------------------------------------------------------- /scripts/git/git-branch-name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/git/git-branch-name -------------------------------------------------------------------------------- /scripts/git/git-branch-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/git/git-branch-search -------------------------------------------------------------------------------- /scripts/git/git-branch-status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/git/git-branch-status -------------------------------------------------------------------------------- /scripts/git/git-checkout-and-remove-untracked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/git/git-checkout-and-remove-untracked -------------------------------------------------------------------------------- /scripts/git/git-commit-branch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/git/git-commit-branch -------------------------------------------------------------------------------- /scripts/git/git-files-modified-by: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/git/git-files-modified-by -------------------------------------------------------------------------------- /scripts/git/git-my-recent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/git/git-my-recent -------------------------------------------------------------------------------- /scripts/git/git-recent-unmerged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/git/git-recent-unmerged -------------------------------------------------------------------------------- /scripts/git/git-rm-merged-branches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/git/git-rm-merged-branches -------------------------------------------------------------------------------- /scripts/gnuplot/annotate.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/gnuplot/annotate.gpi -------------------------------------------------------------------------------- /scripts/gnuplot/black_and_white.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/gnuplot/black_and_white.gpi -------------------------------------------------------------------------------- /scripts/gnuplot/csv.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/gnuplot/csv.gpi -------------------------------------------------------------------------------- /scripts/gnuplot/export.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/gnuplot/export.gpi -------------------------------------------------------------------------------- /scripts/gnuplot/stratus3d.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/gnuplot/stratus3d.gpi -------------------------------------------------------------------------------- /scripts/gnuplot/test.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/gnuplot/test.gpi -------------------------------------------------------------------------------- /scripts/gnuplot/thick_pastel.gpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/gnuplot/thick_pastel.gpi -------------------------------------------------------------------------------- /scripts/install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/README.md -------------------------------------------------------------------------------- /scripts/install/bats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/bats.sh -------------------------------------------------------------------------------- /scripts/install/chirp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/chirp.sh -------------------------------------------------------------------------------- /scripts/install/debian/navi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/debian/navi.sh -------------------------------------------------------------------------------- /scripts/install/debian/step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/debian/step -------------------------------------------------------------------------------- /scripts/install/debian/tika: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/debian/tika -------------------------------------------------------------------------------- /scripts/install/devdocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/devdocs.sh -------------------------------------------------------------------------------- /scripts/install/duplicati.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/duplicati.sh -------------------------------------------------------------------------------- /scripts/install/elvis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/elvis.sh -------------------------------------------------------------------------------- /scripts/install/erlangpl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/erlangpl.sh -------------------------------------------------------------------------------- /scripts/install/erlgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/erlgrind.sh -------------------------------------------------------------------------------- /scripts/install/erlyberly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/erlyberly.sh -------------------------------------------------------------------------------- /scripts/install/filmic_blender.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/filmic_blender.sh -------------------------------------------------------------------------------- /scripts/install/footswitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/footswitch.sh -------------------------------------------------------------------------------- /scripts/install/git-quick-stats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/git-quick-stats.sh -------------------------------------------------------------------------------- /scripts/install/gramps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/gramps.sh -------------------------------------------------------------------------------- /scripts/install/loki-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/loki-cli -------------------------------------------------------------------------------- /scripts/install/observer_cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/observer_cli.sh -------------------------------------------------------------------------------- /scripts/install/prax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/prax.sh -------------------------------------------------------------------------------- /scripts/install/recon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/recon.sh -------------------------------------------------------------------------------- /scripts/install/redshift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/redshift.sh -------------------------------------------------------------------------------- /scripts/install/refactorerl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/refactorerl.sh -------------------------------------------------------------------------------- /scripts/install/relx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/relx.sh -------------------------------------------------------------------------------- /scripts/install/restic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/restic.sh -------------------------------------------------------------------------------- /scripts/install/scriptreplay_ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/scriptreplay_ng -------------------------------------------------------------------------------- /scripts/install/st.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/st.sh -------------------------------------------------------------------------------- /scripts/install/st/theme.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/st/theme.diff -------------------------------------------------------------------------------- /scripts/install/sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/sync.sh -------------------------------------------------------------------------------- /scripts/install/syncd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/syncd.sh -------------------------------------------------------------------------------- /scripts/install/testssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/testssl.sh -------------------------------------------------------------------------------- /scripts/install/translate-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/translate-shell.sh -------------------------------------------------------------------------------- /scripts/install/vial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/vial.sh -------------------------------------------------------------------------------- /scripts/install/xulrunnner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/xulrunnner -------------------------------------------------------------------------------- /scripts/install/yt-dlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/yt-dlp -------------------------------------------------------------------------------- /scripts/install/zeal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/install/zeal.sh -------------------------------------------------------------------------------- /scripts/link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/link.sh -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /scripts/setup/arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/setup/arch -------------------------------------------------------------------------------- /scripts/setup/darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/setup/darwin.sh -------------------------------------------------------------------------------- /scripts/setup/debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/setup/debian.sh -------------------------------------------------------------------------------- /scripts/setup/debian/gnome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/setup/debian/gnome -------------------------------------------------------------------------------- /scripts/setup/debian/lxde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/setup/debian/lxde -------------------------------------------------------------------------------- /scripts/setup/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/setup/linux.sh -------------------------------------------------------------------------------- /scripts/setup/macos-defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/setup/macos-defaults -------------------------------------------------------------------------------- /scripts/setup/packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/setup/packages.sh -------------------------------------------------------------------------------- /scripts/setup/tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/setup/tmux.sh -------------------------------------------------------------------------------- /scripts/tools/asdf-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/asdf-clean -------------------------------------------------------------------------------- /scripts/tools/base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/base -------------------------------------------------------------------------------- /scripts/tools/bash-colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/bash-colors -------------------------------------------------------------------------------- /scripts/tools/calc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/calc -------------------------------------------------------------------------------- /scripts/tools/clone_all_bitbucket_repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/clone_all_bitbucket_repos -------------------------------------------------------------------------------- /scripts/tools/clone_all_github_repos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/clone_all_github_repos -------------------------------------------------------------------------------- /scripts/tools/compiler_to_erlang_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/compiler_to_erlang_version -------------------------------------------------------------------------------- /scripts/tools/count_lines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/count_lines -------------------------------------------------------------------------------- /scripts/tools/csv2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/csv2html -------------------------------------------------------------------------------- /scripts/tools/ct_latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/ct_latest -------------------------------------------------------------------------------- /scripts/tools/curltime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/curltime -------------------------------------------------------------------------------- /scripts/tools/delete_vim_swap_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/delete_vim_swap_files -------------------------------------------------------------------------------- /scripts/tools/docker-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/docker-clean -------------------------------------------------------------------------------- /scripts/tools/docxform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/docxform -------------------------------------------------------------------------------- /scripts/tools/dump_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/dump_env -------------------------------------------------------------------------------- /scripts/tools/elixir-help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/elixir-help -------------------------------------------------------------------------------- /scripts/tools/elixir_to_json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/elixir_to_json -------------------------------------------------------------------------------- /scripts/tools/enable_locate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/enable_locate -------------------------------------------------------------------------------- /scripts/tools/epmd_port_forwarder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/epmd_port_forwarder -------------------------------------------------------------------------------- /scripts/tools/erl_app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/erl_app -------------------------------------------------------------------------------- /scripts/tools/erlang_pretty_print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/erlang_pretty_print -------------------------------------------------------------------------------- /scripts/tools/erlang_version_bump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/erlang_version_bump -------------------------------------------------------------------------------- /scripts/tools/flush_dns_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/flush_dns_cache -------------------------------------------------------------------------------- /scripts/tools/git-worktree-session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/git-worktree-session -------------------------------------------------------------------------------- /scripts/tools/grab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/grab -------------------------------------------------------------------------------- /scripts/tools/haste: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/haste -------------------------------------------------------------------------------- /scripts/tools/jssh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/jssh -------------------------------------------------------------------------------- /scripts/tools/linux/open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/linux/open -------------------------------------------------------------------------------- /scripts/tools/linux/pbcopy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/linux/pbcopy -------------------------------------------------------------------------------- /scripts/tools/linux/pbpaste: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/linux/pbpaste -------------------------------------------------------------------------------- /scripts/tools/macos/notify-send: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/macos/notify-send -------------------------------------------------------------------------------- /scripts/tools/network_controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/network_controller -------------------------------------------------------------------------------- /scripts/tools/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/notes -------------------------------------------------------------------------------- /scripts/tools/ntimes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/ntimes -------------------------------------------------------------------------------- /scripts/tools/patterns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/patterns -------------------------------------------------------------------------------- /scripts/tools/platform_name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/platform_name -------------------------------------------------------------------------------- /scripts/tools/port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/port -------------------------------------------------------------------------------- /scripts/tools/reload-browser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/reload-browser -------------------------------------------------------------------------------- /scripts/tools/remsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/remsh -------------------------------------------------------------------------------- /scripts/tools/remsh_with_custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/remsh_with_custom -------------------------------------------------------------------------------- /scripts/tools/run_on_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/run_on_server -------------------------------------------------------------------------------- /scripts/tools/scanpdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/scanpdf -------------------------------------------------------------------------------- /scripts/tools/shrinkpdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/shrinkpdf -------------------------------------------------------------------------------- /scripts/tools/signal_printer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/signal_printer -------------------------------------------------------------------------------- /scripts/tools/sshmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/sshmux -------------------------------------------------------------------------------- /scripts/tools/ticket-name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/ticket-name -------------------------------------------------------------------------------- /scripts/tools/tmuxinator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/tmuxinator -------------------------------------------------------------------------------- /scripts/tools/to_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/to_server -------------------------------------------------------------------------------- /scripts/tools/update_dotfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/update_dotfiles -------------------------------------------------------------------------------- /scripts/tools/update_locate: -------------------------------------------------------------------------------- 1 | #! /bin/bash - 2 | 3 | sudo /usr/libexec/locate.updatedb 4 | -------------------------------------------------------------------------------- /scripts/tools/webpage-to-ebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/webpage-to-ebook -------------------------------------------------------------------------------- /scripts/tools/website_downloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/website_downloader -------------------------------------------------------------------------------- /scripts/tools/wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/wordlist -------------------------------------------------------------------------------- /scripts/tools/workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/workflow -------------------------------------------------------------------------------- /scripts/tools/wthr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/wthr -------------------------------------------------------------------------------- /scripts/tools/xfmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/xfmt -------------------------------------------------------------------------------- /scripts/tools/xncode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/xncode -------------------------------------------------------------------------------- /scripts/tools/yaml_validator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/tools/yaml_validator -------------------------------------------------------------------------------- /scripts/upon_login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/upon_login.sh -------------------------------------------------------------------------------- /scripts/upon_login_custom.sh.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/scripts/upon_login_custom.sh.example -------------------------------------------------------------------------------- /templates/commit-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/templates/commit-template -------------------------------------------------------------------------------- /templates/erlang/application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/templates/erlang/application -------------------------------------------------------------------------------- /templates/erlang/common_test_hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/templates/erlang/common_test_hook -------------------------------------------------------------------------------- /templates/erlang/commontest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/templates/erlang/commontest -------------------------------------------------------------------------------- /templates/erlang/eqc_statem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/templates/erlang/eqc_statem -------------------------------------------------------------------------------- /templates/erlang/escript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/templates/erlang/escript -------------------------------------------------------------------------------- /templates/erlang/gen_event: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/templates/erlang/gen_event -------------------------------------------------------------------------------- /templates/erlang/gen_fsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/templates/erlang/gen_fsm -------------------------------------------------------------------------------- /templates/erlang/gen_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/templates/erlang/gen_server -------------------------------------------------------------------------------- /templates/erlang/gen_statem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/templates/erlang/gen_statem -------------------------------------------------------------------------------- /templates/erlang/supervisor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/templates/erlang/supervisor -------------------------------------------------------------------------------- /templates/k9s/skin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/templates/k9s/skin.yml -------------------------------------------------------------------------------- /terminal.app_profile/OneHalfLightMod.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/terminal.app_profile/OneHalfLightMod.terminal -------------------------------------------------------------------------------- /terminal.app_profile/Solarized Dark Yosemite.terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/terminal.app_profile/Solarized Dark Yosemite.terminal -------------------------------------------------------------------------------- /tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/tmux.conf -------------------------------------------------------------------------------- /tmuxinator/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/tmuxinator/default.yml -------------------------------------------------------------------------------- /tool-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/tool-versions -------------------------------------------------------------------------------- /vim/UltiSnips/dot.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/UltiSnips/dot.snippets -------------------------------------------------------------------------------- /vim/UltiSnips/elixir.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/UltiSnips/elixir.snippets -------------------------------------------------------------------------------- /vim/UltiSnips/erlang.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/UltiSnips/erlang.snippets -------------------------------------------------------------------------------- /vim/UltiSnips/go.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/UltiSnips/go.snippets -------------------------------------------------------------------------------- /vim/UltiSnips/make.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/UltiSnips/make.snippets -------------------------------------------------------------------------------- /vim/UltiSnips/python.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/UltiSnips/python.snippets -------------------------------------------------------------------------------- /vim/UltiSnips/ruby.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/UltiSnips/ruby.snippets -------------------------------------------------------------------------------- /vim/UltiSnips/sh.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/UltiSnips/sh.snippets -------------------------------------------------------------------------------- /vim/UltiSnips/vim.snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/UltiSnips/vim.snippets -------------------------------------------------------------------------------- /vim/ftplugin/crontab.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/ftplugin/crontab.vim -------------------------------------------------------------------------------- /vim/ftplugin/css.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/ftplugin/css.vim -------------------------------------------------------------------------------- /vim/ftplugin/elixir.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/ftplugin/elixir.vim -------------------------------------------------------------------------------- /vim/ftplugin/erlang.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/ftplugin/erlang.vim -------------------------------------------------------------------------------- /vim/ftplugin/gitcommit.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/ftplugin/gitcommit.vim -------------------------------------------------------------------------------- /vim/ftplugin/less.vim: -------------------------------------------------------------------------------- 1 | " Inherit from the CSS file type settings 2 | runtime! ftplugin/css.vim 3 | -------------------------------------------------------------------------------- /vim/ftplugin/make.vim: -------------------------------------------------------------------------------- 1 | " Make 2 | " Allow tabs in makefiles 3 | setlocal noexpandtab 4 | -------------------------------------------------------------------------------- /vim/ftplugin/markdown.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/ftplugin/markdown.vim -------------------------------------------------------------------------------- /vim/ftplugin/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/ftplugin/python.vim -------------------------------------------------------------------------------- /vim/ftplugin/ruby.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/ftplugin/ruby.vim -------------------------------------------------------------------------------- /vim/ftplugin/sass.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/ftplugin/sass.vim -------------------------------------------------------------------------------- /vim/ftplugin/text.vim: -------------------------------------------------------------------------------- 1 | " Plain Text 2 | setlocal spell 3 | -------------------------------------------------------------------------------- /vim/ftplugin/typescript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/ftplugin/typescript.vim -------------------------------------------------------------------------------- /vim/plugins.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/plugins.vim -------------------------------------------------------------------------------- /vim/sortwords.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/sortwords.vim -------------------------------------------------------------------------------- /vim/spell/en.utf-8.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/spell/en.utf-8.add -------------------------------------------------------------------------------- /vim/whitespace.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vim/whitespace.vim -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/vimrc -------------------------------------------------------------------------------- /zsh/git.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/zsh/git.zsh -------------------------------------------------------------------------------- /zsh/theme.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/zsh/theme.zsh -------------------------------------------------------------------------------- /zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stratus3D/dotfiles/HEAD/zshrc --------------------------------------------------------------------------------