├── .bundle └── config ├── .gitignore ├── .gitmodules ├── Gemfile ├── LICENSE ├── README.md ├── bin ├── colortest └── install ├── doc ├── useful_commands.md └── useful_vim.md └── lib ├── bin ├── adobe-kill ├── curltime ├── extract ├── filter ├── git-branch-cleanup ├── git-changed-files ├── git-identity ├── git-merge-point ├── git-unite ├── install-basic-gems.sh ├── launch ├── mkdiff ├── nam ├── speedtest ├── sway ├── terminal-truecolor ├── tzc ├── urldecode ├── urlencode ├── virsh-send-keys ├── webserver └── wl-screenshot ├── config ├── colordiff │ └── colordiffrc ├── containers │ └── containers.conf ├── flake8 ├── fontconfig │ └── fonts.conf ├── git │ ├── attributes │ ├── config │ └── ignore ├── gtk-3.0 │ └── gtk.css ├── ideavim │ └── ideavimrc ├── imv │ └── config ├── kitty │ └── kitty.conf ├── mako │ └── config ├── mpv │ └── mpv.conf ├── nvim │ └── init.vim ├── pry │ └── pryrc ├── ripgrep │ └── config ├── rubocop │ └── config.yml ├── sway │ └── config ├── tig │ └── config ├── tmux │ └── tmux.conf ├── waybar │ ├── config │ ├── mediaplayer │ └── style.css └── wofi │ ├── config │ └── style.css ├── firefox ├── user.js ├── userChrome.css └── userContent.css ├── gnupg ├── gpg-agent.conf └── gpg.conf ├── linux └── configure ├── macos ├── DefaultKeyBinding.dict └── configure ├── root ├── Renviron ├── Rprofile ├── bash_logout ├── bash_profile ├── bashrc ├── colormakerc ├── editrc ├── eslintrc.js ├── gemrc ├── ghci ├── gvimrc ├── inputrc ├── irbrc ├── lein │ └── profiles.clj ├── psqlrc ├── spacemacs.d │ └── init.el ├── sqliterc ├── vimrc ├── zlogout ├── zprofile ├── zshenv └── zshrc ├── ruby ├── init.rb ├── irb.rb └── pry.rb ├── shell ├── env.zsh ├── interactive.zsh ├── plugins │ ├── _core │ │ ├── env.zsh │ │ ├── interactive.zsh │ │ └── profile.zsh │ ├── ant │ │ └── interactive.zsh │ ├── base16 │ │ └── interactive.zsh │ ├── c │ │ └── interactive.zsh │ ├── dnf │ │ └── interactive.zsh │ ├── fzf │ │ └── env.zsh │ ├── git │ │ └── env.zsh │ ├── haskell-stack │ │ └── env.zsh │ ├── homebrew │ │ └── env.zsh │ ├── node │ │ └── interactive.zsh │ ├── python │ │ ├── env.zsh │ │ ├── interactive.zsh │ │ └── profile.zsh │ ├── ripgrep │ │ └── env.zsh │ ├── ruby │ │ └── interactive.zsh │ ├── rust │ │ └── env.zsh │ └── tex │ │ └── env.zsh ├── profile.zsh ├── util.bash └── vendor │ └── .keep ├── terminfo └── tmux.terminfo.txt ├── vim ├── after │ └── syntax │ │ ├── css.vim │ │ └── html.vim ├── bundle │ └── python-mode │ │ └── syntax │ │ └── python.vim ├── colors │ └── solarized.vim ├── config │ ├── filetypes.vim │ ├── init.vim │ ├── mappings.vim │ ├── packages.vim │ ├── plugins.vim │ └── settings.vim ├── pack │ └── user │ │ ├── opt │ │ ├── .keep │ │ ├── bundler │ │ ├── fireplace │ │ ├── gdb-neovim │ │ ├── intero-neovim │ │ ├── racer │ │ ├── rake │ │ ├── startuptime │ │ └── textobj-rubyblock │ │ └── start │ │ ├── .keep │ │ ├── ZoomWin │ │ ├── abolish │ │ ├── ack │ │ ├── alchemist │ │ ├── ale │ │ ├── applescript │ │ ├── argtextobj │ │ ├── base16 │ │ ├── beancount │ │ ├── bitbake │ │ ├── blockle │ │ ├── bundle │ │ ├── camelcasemotion │ │ ├── coffee-script │ │ ├── cucumber │ │ ├── easymotion │ │ ├── easytags │ │ ├── editorconfig │ │ ├── elixir │ │ ├── elm │ │ ├── endwise │ │ ├── exchange │ │ ├── fennel │ │ ├── fugitive │ │ ├── fzf │ │ ├── glsl │ │ ├── haml │ │ ├── haskell │ │ ├── hcl │ │ ├── hy │ │ ├── idris │ │ ├── indent-guides │ │ ├── indent-object │ │ ├── indentLine │ │ ├── indentwise │ │ ├── indexed-search │ │ ├── janet │ │ ├── javascript │ │ ├── jinja2 │ │ ├── json │ │ ├── jsonnet │ │ ├── jsx │ │ ├── julia │ │ ├── l9 │ │ ├── lkml │ │ ├── matchit │ │ ├── misc │ │ ├── mundo │ │ ├── mustache │ │ ├── nerdcommenter │ │ ├── nerdtree │ │ ├── nftables │ │ ├── nginx │ │ ├── nix │ │ ├── nvim-lspconfig │ │ ├── pandoc │ │ ├── pandoc-syntax │ │ ├── parinfer-rust │ │ ├── pest │ │ ├── projectionist │ │ ├── prolog │ │ ├── ps1 │ │ ├── puppet │ │ ├── python-mode │ │ ├── python-pep8-indent │ │ ├── racket │ │ ├── rails │ │ ├── rainbow_parentheses │ │ ├── regreplop │ │ ├── repeat │ │ ├── ruby │ │ ├── rust │ │ ├── scala │ │ ├── signify │ │ ├── snipMate │ │ ├── speeddating │ │ ├── splitjoin │ │ ├── supertab │ │ ├── surround │ │ ├── swift │ │ ├── tabular │ │ ├── tagbar │ │ ├── terraform │ │ ├── textobj-user │ │ ├── tmux-focus-events │ │ ├── toml │ │ ├── tslime │ │ ├── typescript │ │ ├── unimpaired │ │ ├── vis │ │ ├── which-key │ │ └── yats ├── plugin │ └── fzf.vim └── spell │ ├── en.utf-8.add │ └── en.utf-8.add.spl └── zsh ├── env.zsh ├── functions ├── _c ├── _docker-compose ├── _gem ├── _git-unite ├── _git_unite ├── _h ├── _npm ├── _pip └── _redis-cli ├── interactive.zsh ├── lib ├── aliases.zsh ├── completions.zsh ├── config.zsh └── prompt.zsh ├── plugins ├── _core │ └── interactive.zsh ├── command-not-found │ └── interactive.zsh └── fzf │ └── interactive.zsh └── profile.zsh /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor/ruby" 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /bin/colortest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/bin/colortest -------------------------------------------------------------------------------- /bin/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/bin/install -------------------------------------------------------------------------------- /doc/useful_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/doc/useful_commands.md -------------------------------------------------------------------------------- /doc/useful_vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/doc/useful_vim.md -------------------------------------------------------------------------------- /lib/bin/adobe-kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/adobe-kill -------------------------------------------------------------------------------- /lib/bin/curltime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/curltime -------------------------------------------------------------------------------- /lib/bin/extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/extract -------------------------------------------------------------------------------- /lib/bin/filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/filter -------------------------------------------------------------------------------- /lib/bin/git-branch-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/git-branch-cleanup -------------------------------------------------------------------------------- /lib/bin/git-changed-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/git-changed-files -------------------------------------------------------------------------------- /lib/bin/git-identity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/git-identity -------------------------------------------------------------------------------- /lib/bin/git-merge-point: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/git-merge-point -------------------------------------------------------------------------------- /lib/bin/git-unite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/git-unite -------------------------------------------------------------------------------- /lib/bin/install-basic-gems.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/install-basic-gems.sh -------------------------------------------------------------------------------- /lib/bin/launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/launch -------------------------------------------------------------------------------- /lib/bin/mkdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/mkdiff -------------------------------------------------------------------------------- /lib/bin/nam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/nam -------------------------------------------------------------------------------- /lib/bin/speedtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/speedtest -------------------------------------------------------------------------------- /lib/bin/sway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/sway -------------------------------------------------------------------------------- /lib/bin/terminal-truecolor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/terminal-truecolor -------------------------------------------------------------------------------- /lib/bin/tzc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/tzc -------------------------------------------------------------------------------- /lib/bin/urldecode: -------------------------------------------------------------------------------- 1 | urlencode -------------------------------------------------------------------------------- /lib/bin/urlencode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/urlencode -------------------------------------------------------------------------------- /lib/bin/virsh-send-keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/virsh-send-keys -------------------------------------------------------------------------------- /lib/bin/webserver: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec python3 -m http.server "$@" 4 | -------------------------------------------------------------------------------- /lib/bin/wl-screenshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/bin/wl-screenshot -------------------------------------------------------------------------------- /lib/config/colordiff/colordiffrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/colordiff/colordiffrc -------------------------------------------------------------------------------- /lib/config/containers/containers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/containers/containers.conf -------------------------------------------------------------------------------- /lib/config/flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/flake8 -------------------------------------------------------------------------------- /lib/config/fontconfig/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/fontconfig/fonts.conf -------------------------------------------------------------------------------- /lib/config/git/attributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/git/attributes -------------------------------------------------------------------------------- /lib/config/git/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/git/config -------------------------------------------------------------------------------- /lib/config/git/ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/git/ignore -------------------------------------------------------------------------------- /lib/config/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /lib/config/ideavim/ideavimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/ideavim/ideavimrc -------------------------------------------------------------------------------- /lib/config/imv/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/imv/config -------------------------------------------------------------------------------- /lib/config/kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/kitty/kitty.conf -------------------------------------------------------------------------------- /lib/config/mako/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/mako/config -------------------------------------------------------------------------------- /lib/config/mpv/mpv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/mpv/mpv.conf -------------------------------------------------------------------------------- /lib/config/nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/nvim/init.vim -------------------------------------------------------------------------------- /lib/config/pry/pryrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/pry/pryrc -------------------------------------------------------------------------------- /lib/config/ripgrep/config: -------------------------------------------------------------------------------- 1 | --smart-case 2 | -------------------------------------------------------------------------------- /lib/config/rubocop/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/rubocop/config.yml -------------------------------------------------------------------------------- /lib/config/sway/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/sway/config -------------------------------------------------------------------------------- /lib/config/tig/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/tig/config -------------------------------------------------------------------------------- /lib/config/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/tmux/tmux.conf -------------------------------------------------------------------------------- /lib/config/waybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/waybar/config -------------------------------------------------------------------------------- /lib/config/waybar/mediaplayer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/waybar/mediaplayer -------------------------------------------------------------------------------- /lib/config/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/waybar/style.css -------------------------------------------------------------------------------- /lib/config/wofi/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/wofi/config -------------------------------------------------------------------------------- /lib/config/wofi/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/config/wofi/style.css -------------------------------------------------------------------------------- /lib/firefox/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/firefox/user.js -------------------------------------------------------------------------------- /lib/firefox/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/firefox/userChrome.css -------------------------------------------------------------------------------- /lib/firefox/userContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/firefox/userContent.css -------------------------------------------------------------------------------- /lib/gnupg/gpg-agent.conf: -------------------------------------------------------------------------------- 1 | enable-ssh-support 2 | -------------------------------------------------------------------------------- /lib/gnupg/gpg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/gnupg/gpg.conf -------------------------------------------------------------------------------- /lib/linux/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/linux/configure -------------------------------------------------------------------------------- /lib/macos/DefaultKeyBinding.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/macos/DefaultKeyBinding.dict -------------------------------------------------------------------------------- /lib/macos/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/macos/configure -------------------------------------------------------------------------------- /lib/root/Renviron: -------------------------------------------------------------------------------- 1 | R_HISTFILE="~/.RHistory" 2 | -------------------------------------------------------------------------------- /lib/root/Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/Rprofile -------------------------------------------------------------------------------- /lib/root/bash_logout: -------------------------------------------------------------------------------- 1 | zlogout -------------------------------------------------------------------------------- /lib/root/bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/bash_profile -------------------------------------------------------------------------------- /lib/root/bashrc: -------------------------------------------------------------------------------- 1 | bash_profile -------------------------------------------------------------------------------- /lib/root/colormakerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/colormakerc -------------------------------------------------------------------------------- /lib/root/editrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/editrc -------------------------------------------------------------------------------- /lib/root/eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/eslintrc.js -------------------------------------------------------------------------------- /lib/root/gemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/gemrc -------------------------------------------------------------------------------- /lib/root/ghci: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/root/gvimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/gvimrc -------------------------------------------------------------------------------- /lib/root/inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/inputrc -------------------------------------------------------------------------------- /lib/root/irbrc: -------------------------------------------------------------------------------- 1 | require File.join(Dir.home, '.config/dotfiles/ruby/irb.rb') 2 | -------------------------------------------------------------------------------- /lib/root/lein/profiles.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/lein/profiles.clj -------------------------------------------------------------------------------- /lib/root/psqlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/psqlrc -------------------------------------------------------------------------------- /lib/root/spacemacs.d/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/spacemacs.d/init.el -------------------------------------------------------------------------------- /lib/root/sqliterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/sqliterc -------------------------------------------------------------------------------- /lib/root/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/vimrc -------------------------------------------------------------------------------- /lib/root/zlogout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/zlogout -------------------------------------------------------------------------------- /lib/root/zprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/root/zprofile -------------------------------------------------------------------------------- /lib/root/zshenv: -------------------------------------------------------------------------------- 1 | source ~/.config/dotfiles/zsh/env.zsh 2 | -------------------------------------------------------------------------------- /lib/root/zshrc: -------------------------------------------------------------------------------- 1 | source ~/.config/dotfiles/zsh/interactive.zsh 2 | 3 | true 4 | -------------------------------------------------------------------------------- /lib/ruby/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/ruby/init.rb -------------------------------------------------------------------------------- /lib/ruby/irb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/ruby/irb.rb -------------------------------------------------------------------------------- /lib/ruby/pry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/ruby/pry.rb -------------------------------------------------------------------------------- /lib/shell/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/env.zsh -------------------------------------------------------------------------------- /lib/shell/interactive.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/interactive.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/_core/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/_core/env.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/_core/interactive.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/_core/interactive.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/_core/profile.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/_core/profile.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/ant/interactive.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/ant/interactive.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/base16/interactive.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/base16/interactive.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/c/interactive.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/c/interactive.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/dnf/interactive.zsh: -------------------------------------------------------------------------------- 1 | if [[ $(id -u) != 0 ]]; then 2 | alias dnf="dnf --cacheonly" 3 | fi 4 | -------------------------------------------------------------------------------- /lib/shell/plugins/fzf/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/fzf/env.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/git/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/git/env.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/haskell-stack/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/haskell-stack/env.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/homebrew/env.zsh: -------------------------------------------------------------------------------- 1 | if command -v brew &>/dev/null; then 2 | export HOMEBREW_CASK_OPTS='--appdir=/Applications' 3 | fi 4 | -------------------------------------------------------------------------------- /lib/shell/plugins/node/interactive.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/node/interactive.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/python/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/python/env.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/python/interactive.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/python/interactive.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/python/profile.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/python/profile.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/ripgrep/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/ripgrep/env.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/ruby/interactive.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/ruby/interactive.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/rust/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/rust/env.zsh -------------------------------------------------------------------------------- /lib/shell/plugins/tex/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/plugins/tex/env.zsh -------------------------------------------------------------------------------- /lib/shell/profile.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/profile.zsh -------------------------------------------------------------------------------- /lib/shell/util.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/shell/util.bash -------------------------------------------------------------------------------- /lib/shell/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/terminfo/tmux.terminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/terminfo/tmux.terminfo.txt -------------------------------------------------------------------------------- /lib/vim/after/syntax/css.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/vim/after/syntax/css.vim -------------------------------------------------------------------------------- /lib/vim/after/syntax/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/vim/after/syntax/html.vim -------------------------------------------------------------------------------- /lib/vim/bundle/python-mode/syntax/python.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/vim/bundle/python-mode/syntax/python.vim -------------------------------------------------------------------------------- /lib/vim/colors/solarized.vim: -------------------------------------------------------------------------------- 1 | ../bundle/vim-colors-solarized/colors/solarized.vim -------------------------------------------------------------------------------- /lib/vim/config/filetypes.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/vim/config/filetypes.vim -------------------------------------------------------------------------------- /lib/vim/config/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/vim/config/init.vim -------------------------------------------------------------------------------- /lib/vim/config/mappings.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/vim/config/mappings.vim -------------------------------------------------------------------------------- /lib/vim/config/packages.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/vim/config/packages.vim -------------------------------------------------------------------------------- /lib/vim/config/plugins.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/vim/config/plugins.vim -------------------------------------------------------------------------------- /lib/vim/config/settings.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/vim/config/settings.vim -------------------------------------------------------------------------------- /lib/vim/pack/user/opt/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/vim/pack/user/opt/bundler: -------------------------------------------------------------------------------- 1 | ../../../bundle/bundler -------------------------------------------------------------------------------- /lib/vim/pack/user/opt/fireplace: -------------------------------------------------------------------------------- 1 | ../../../bundle/fireplace -------------------------------------------------------------------------------- /lib/vim/pack/user/opt/gdb-neovim: -------------------------------------------------------------------------------- 1 | ../../../bundle/gdb-neovim -------------------------------------------------------------------------------- /lib/vim/pack/user/opt/intero-neovim: -------------------------------------------------------------------------------- 1 | ../../../bundle/intero-neovim -------------------------------------------------------------------------------- /lib/vim/pack/user/opt/racer: -------------------------------------------------------------------------------- 1 | ../../../bundle/racer -------------------------------------------------------------------------------- /lib/vim/pack/user/opt/rake: -------------------------------------------------------------------------------- 1 | ../../../bundle/rake -------------------------------------------------------------------------------- /lib/vim/pack/user/opt/startuptime: -------------------------------------------------------------------------------- 1 | ../../../bundle/startuptime -------------------------------------------------------------------------------- /lib/vim/pack/user/opt/textobj-rubyblock: -------------------------------------------------------------------------------- 1 | ../../../bundle/textobj-rubyblock -------------------------------------------------------------------------------- /lib/vim/pack/user/start/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/vim/pack/user/start/ZoomWin: -------------------------------------------------------------------------------- 1 | ../../../bundle/ZoomWin -------------------------------------------------------------------------------- /lib/vim/pack/user/start/abolish: -------------------------------------------------------------------------------- 1 | ../../../bundle/abolish -------------------------------------------------------------------------------- /lib/vim/pack/user/start/ack: -------------------------------------------------------------------------------- 1 | ../../../bundle/ack -------------------------------------------------------------------------------- /lib/vim/pack/user/start/alchemist: -------------------------------------------------------------------------------- 1 | ../../../bundle/alchemist -------------------------------------------------------------------------------- /lib/vim/pack/user/start/ale: -------------------------------------------------------------------------------- 1 | ../../../bundle/ale -------------------------------------------------------------------------------- /lib/vim/pack/user/start/applescript: -------------------------------------------------------------------------------- 1 | ../../../bundle/applescript -------------------------------------------------------------------------------- /lib/vim/pack/user/start/argtextobj: -------------------------------------------------------------------------------- 1 | ../../../bundle/argtextobj -------------------------------------------------------------------------------- /lib/vim/pack/user/start/base16: -------------------------------------------------------------------------------- 1 | ../../../bundle/base16 -------------------------------------------------------------------------------- /lib/vim/pack/user/start/beancount: -------------------------------------------------------------------------------- 1 | ../../../bundle/beancount -------------------------------------------------------------------------------- /lib/vim/pack/user/start/bitbake: -------------------------------------------------------------------------------- 1 | ../../../bundle/bitbake -------------------------------------------------------------------------------- /lib/vim/pack/user/start/blockle: -------------------------------------------------------------------------------- 1 | ../../../bundle/blockle -------------------------------------------------------------------------------- /lib/vim/pack/user/start/bundle: -------------------------------------------------------------------------------- 1 | ../../../bundle -------------------------------------------------------------------------------- /lib/vim/pack/user/start/camelcasemotion: -------------------------------------------------------------------------------- 1 | ../../../bundle/camelcasemotion -------------------------------------------------------------------------------- /lib/vim/pack/user/start/coffee-script: -------------------------------------------------------------------------------- 1 | ../../../bundle/coffee-script -------------------------------------------------------------------------------- /lib/vim/pack/user/start/cucumber: -------------------------------------------------------------------------------- 1 | ../../../bundle/cucumber -------------------------------------------------------------------------------- /lib/vim/pack/user/start/easymotion: -------------------------------------------------------------------------------- 1 | ../../../bundle/easymotion -------------------------------------------------------------------------------- /lib/vim/pack/user/start/easytags: -------------------------------------------------------------------------------- 1 | ../../../bundle/easytags -------------------------------------------------------------------------------- /lib/vim/pack/user/start/editorconfig: -------------------------------------------------------------------------------- 1 | ../../../bundle/editorconfig -------------------------------------------------------------------------------- /lib/vim/pack/user/start/elixir: -------------------------------------------------------------------------------- 1 | ../../../bundle/elixir -------------------------------------------------------------------------------- /lib/vim/pack/user/start/elm: -------------------------------------------------------------------------------- 1 | ../../../bundle/elm -------------------------------------------------------------------------------- /lib/vim/pack/user/start/endwise: -------------------------------------------------------------------------------- 1 | ../../../bundle/endwise -------------------------------------------------------------------------------- /lib/vim/pack/user/start/exchange: -------------------------------------------------------------------------------- 1 | ../../../bundle/exchange -------------------------------------------------------------------------------- /lib/vim/pack/user/start/fennel: -------------------------------------------------------------------------------- 1 | ../../../bundle/fennel -------------------------------------------------------------------------------- /lib/vim/pack/user/start/fugitive: -------------------------------------------------------------------------------- 1 | ../../../bundle/fugitive -------------------------------------------------------------------------------- /lib/vim/pack/user/start/fzf: -------------------------------------------------------------------------------- 1 | ../../../bundle/fzf -------------------------------------------------------------------------------- /lib/vim/pack/user/start/glsl: -------------------------------------------------------------------------------- 1 | ../../../bundle/glsl -------------------------------------------------------------------------------- /lib/vim/pack/user/start/haml: -------------------------------------------------------------------------------- 1 | ../../../bundle/haml -------------------------------------------------------------------------------- /lib/vim/pack/user/start/haskell: -------------------------------------------------------------------------------- 1 | ../../../bundle/haskell -------------------------------------------------------------------------------- /lib/vim/pack/user/start/hcl: -------------------------------------------------------------------------------- 1 | ../../../bundle/hcl -------------------------------------------------------------------------------- /lib/vim/pack/user/start/hy: -------------------------------------------------------------------------------- 1 | ../../../bundle/hy -------------------------------------------------------------------------------- /lib/vim/pack/user/start/idris: -------------------------------------------------------------------------------- 1 | ../../../bundle/idris -------------------------------------------------------------------------------- /lib/vim/pack/user/start/indent-guides: -------------------------------------------------------------------------------- 1 | ../../../bundle/indent-guides -------------------------------------------------------------------------------- /lib/vim/pack/user/start/indent-object: -------------------------------------------------------------------------------- 1 | ../../../bundle/indent-object -------------------------------------------------------------------------------- /lib/vim/pack/user/start/indentLine: -------------------------------------------------------------------------------- 1 | ../../../bundle/indentLine -------------------------------------------------------------------------------- /lib/vim/pack/user/start/indentwise: -------------------------------------------------------------------------------- 1 | ../../../bundle/indentwise -------------------------------------------------------------------------------- /lib/vim/pack/user/start/indexed-search: -------------------------------------------------------------------------------- 1 | ../../../bundle/indexed-search -------------------------------------------------------------------------------- /lib/vim/pack/user/start/janet: -------------------------------------------------------------------------------- 1 | ../../../bundle/janet -------------------------------------------------------------------------------- /lib/vim/pack/user/start/javascript: -------------------------------------------------------------------------------- 1 | ../../../bundle/javascript -------------------------------------------------------------------------------- /lib/vim/pack/user/start/jinja2: -------------------------------------------------------------------------------- 1 | ../../../bundle/jinja2 -------------------------------------------------------------------------------- /lib/vim/pack/user/start/json: -------------------------------------------------------------------------------- 1 | ../../../bundle/json -------------------------------------------------------------------------------- /lib/vim/pack/user/start/jsonnet: -------------------------------------------------------------------------------- 1 | ../../../bundle/jsonnet -------------------------------------------------------------------------------- /lib/vim/pack/user/start/jsx: -------------------------------------------------------------------------------- 1 | ../../../bundle/jsx -------------------------------------------------------------------------------- /lib/vim/pack/user/start/julia: -------------------------------------------------------------------------------- 1 | ../../../bundle/julia -------------------------------------------------------------------------------- /lib/vim/pack/user/start/l9: -------------------------------------------------------------------------------- 1 | ../../../bundle/l9 -------------------------------------------------------------------------------- /lib/vim/pack/user/start/lkml: -------------------------------------------------------------------------------- 1 | ../../../bundle/lkml -------------------------------------------------------------------------------- /lib/vim/pack/user/start/matchit: -------------------------------------------------------------------------------- 1 | ../../../bundle/matchit -------------------------------------------------------------------------------- /lib/vim/pack/user/start/misc: -------------------------------------------------------------------------------- 1 | ../../../bundle/misc -------------------------------------------------------------------------------- /lib/vim/pack/user/start/mundo: -------------------------------------------------------------------------------- 1 | ../../../bundle/mundo -------------------------------------------------------------------------------- /lib/vim/pack/user/start/mustache: -------------------------------------------------------------------------------- 1 | ../../../bundle/mustache -------------------------------------------------------------------------------- /lib/vim/pack/user/start/nerdcommenter: -------------------------------------------------------------------------------- 1 | ../../../bundle/nerdcommenter -------------------------------------------------------------------------------- /lib/vim/pack/user/start/nerdtree: -------------------------------------------------------------------------------- 1 | ../../../bundle/nerdtree -------------------------------------------------------------------------------- /lib/vim/pack/user/start/nftables: -------------------------------------------------------------------------------- 1 | ../../../bundle/nftables -------------------------------------------------------------------------------- /lib/vim/pack/user/start/nginx: -------------------------------------------------------------------------------- 1 | ../../../bundle/nginx -------------------------------------------------------------------------------- /lib/vim/pack/user/start/nix: -------------------------------------------------------------------------------- 1 | ../../../bundle/nix -------------------------------------------------------------------------------- /lib/vim/pack/user/start/nvim-lspconfig: -------------------------------------------------------------------------------- 1 | ../../../bundle/nvim-lspconfig -------------------------------------------------------------------------------- /lib/vim/pack/user/start/pandoc: -------------------------------------------------------------------------------- 1 | ../../../bundle/pandoc -------------------------------------------------------------------------------- /lib/vim/pack/user/start/pandoc-syntax: -------------------------------------------------------------------------------- 1 | ../../../bundle/pandoc-syntax -------------------------------------------------------------------------------- /lib/vim/pack/user/start/parinfer-rust: -------------------------------------------------------------------------------- 1 | ../../../bundle/parinfer-rust -------------------------------------------------------------------------------- /lib/vim/pack/user/start/pest: -------------------------------------------------------------------------------- 1 | ../../../bundle/pest -------------------------------------------------------------------------------- /lib/vim/pack/user/start/projectionist: -------------------------------------------------------------------------------- 1 | ../../../bundle/projectionist -------------------------------------------------------------------------------- /lib/vim/pack/user/start/prolog: -------------------------------------------------------------------------------- 1 | ../../../bundle/prolog -------------------------------------------------------------------------------- /lib/vim/pack/user/start/ps1: -------------------------------------------------------------------------------- 1 | ../../../bundle/ps1 -------------------------------------------------------------------------------- /lib/vim/pack/user/start/puppet: -------------------------------------------------------------------------------- 1 | ../../../bundle/puppet -------------------------------------------------------------------------------- /lib/vim/pack/user/start/python-mode: -------------------------------------------------------------------------------- 1 | ../../../bundle/python-mode -------------------------------------------------------------------------------- /lib/vim/pack/user/start/python-pep8-indent: -------------------------------------------------------------------------------- 1 | ../../../bundle/python-pep8-indent -------------------------------------------------------------------------------- /lib/vim/pack/user/start/racket: -------------------------------------------------------------------------------- 1 | ../../../bundle/racket -------------------------------------------------------------------------------- /lib/vim/pack/user/start/rails: -------------------------------------------------------------------------------- 1 | ../../../bundle/rails -------------------------------------------------------------------------------- /lib/vim/pack/user/start/rainbow_parentheses: -------------------------------------------------------------------------------- 1 | ../../../bundle/rainbow_parentheses -------------------------------------------------------------------------------- /lib/vim/pack/user/start/regreplop: -------------------------------------------------------------------------------- 1 | ../../../bundle/regreplop -------------------------------------------------------------------------------- /lib/vim/pack/user/start/repeat: -------------------------------------------------------------------------------- 1 | ../../../bundle/repeat -------------------------------------------------------------------------------- /lib/vim/pack/user/start/ruby: -------------------------------------------------------------------------------- 1 | ../../../bundle/ruby -------------------------------------------------------------------------------- /lib/vim/pack/user/start/rust: -------------------------------------------------------------------------------- 1 | ../../../bundle/rust -------------------------------------------------------------------------------- /lib/vim/pack/user/start/scala: -------------------------------------------------------------------------------- 1 | ../../../bundle/scala -------------------------------------------------------------------------------- /lib/vim/pack/user/start/signify: -------------------------------------------------------------------------------- 1 | ../../../bundle/signify -------------------------------------------------------------------------------- /lib/vim/pack/user/start/snipMate: -------------------------------------------------------------------------------- 1 | ../../../bundle/snipMate -------------------------------------------------------------------------------- /lib/vim/pack/user/start/speeddating: -------------------------------------------------------------------------------- 1 | ../../../bundle/speeddating -------------------------------------------------------------------------------- /lib/vim/pack/user/start/splitjoin: -------------------------------------------------------------------------------- 1 | ../../../bundle/splitjoin -------------------------------------------------------------------------------- /lib/vim/pack/user/start/supertab: -------------------------------------------------------------------------------- 1 | ../../../bundle/supertab -------------------------------------------------------------------------------- /lib/vim/pack/user/start/surround: -------------------------------------------------------------------------------- 1 | ../../../bundle/surround -------------------------------------------------------------------------------- /lib/vim/pack/user/start/swift: -------------------------------------------------------------------------------- 1 | ../../../bundle/swift -------------------------------------------------------------------------------- /lib/vim/pack/user/start/tabular: -------------------------------------------------------------------------------- 1 | ../../../bundle/tabular -------------------------------------------------------------------------------- /lib/vim/pack/user/start/tagbar: -------------------------------------------------------------------------------- 1 | ../../../bundle/tagbar -------------------------------------------------------------------------------- /lib/vim/pack/user/start/terraform: -------------------------------------------------------------------------------- 1 | ../../../bundle/terraform -------------------------------------------------------------------------------- /lib/vim/pack/user/start/textobj-user: -------------------------------------------------------------------------------- 1 | ../../../bundle/textobj-user -------------------------------------------------------------------------------- /lib/vim/pack/user/start/tmux-focus-events: -------------------------------------------------------------------------------- 1 | ../../../bundle/tmux-focus-events -------------------------------------------------------------------------------- /lib/vim/pack/user/start/toml: -------------------------------------------------------------------------------- 1 | ../../../bundle/toml -------------------------------------------------------------------------------- /lib/vim/pack/user/start/tslime: -------------------------------------------------------------------------------- 1 | ../../../bundle/tslime -------------------------------------------------------------------------------- /lib/vim/pack/user/start/typescript: -------------------------------------------------------------------------------- 1 | ../../../bundle/typescript -------------------------------------------------------------------------------- /lib/vim/pack/user/start/unimpaired: -------------------------------------------------------------------------------- 1 | ../../../bundle/unimpaired -------------------------------------------------------------------------------- /lib/vim/pack/user/start/vis: -------------------------------------------------------------------------------- 1 | ../../../bundle/vis -------------------------------------------------------------------------------- /lib/vim/pack/user/start/which-key: -------------------------------------------------------------------------------- 1 | ../../../bundle/which-key -------------------------------------------------------------------------------- /lib/vim/pack/user/start/yats: -------------------------------------------------------------------------------- 1 | ../../../bundle/yats -------------------------------------------------------------------------------- /lib/vim/plugin/fzf.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/vim/plugin/fzf.vim -------------------------------------------------------------------------------- /lib/vim/spell/en.utf-8.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/vim/spell/en.utf-8.add -------------------------------------------------------------------------------- /lib/vim/spell/en.utf-8.add.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/vim/spell/en.utf-8.add.spl -------------------------------------------------------------------------------- /lib/zsh/env.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/env.zsh -------------------------------------------------------------------------------- /lib/zsh/functions/_c: -------------------------------------------------------------------------------- 1 | #compdef c 2 | dirs=(~/Code/*) 3 | _files -W dirs -/ 4 | -------------------------------------------------------------------------------- /lib/zsh/functions/_docker-compose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/functions/_docker-compose -------------------------------------------------------------------------------- /lib/zsh/functions/_gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/functions/_gem -------------------------------------------------------------------------------- /lib/zsh/functions/_git-unite: -------------------------------------------------------------------------------- 1 | #compdef 2 | _git-merge "$@" 3 | -------------------------------------------------------------------------------- /lib/zsh/functions/_git_unite: -------------------------------------------------------------------------------- 1 | #compdef 2 | _git_merge "$@" 3 | -------------------------------------------------------------------------------- /lib/zsh/functions/_h: -------------------------------------------------------------------------------- 1 | #compdef h 2 | _files -W ~ -/ 3 | -------------------------------------------------------------------------------- /lib/zsh/functions/_npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/functions/_npm -------------------------------------------------------------------------------- /lib/zsh/functions/_pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/functions/_pip -------------------------------------------------------------------------------- /lib/zsh/functions/_redis-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/functions/_redis-cli -------------------------------------------------------------------------------- /lib/zsh/interactive.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/interactive.zsh -------------------------------------------------------------------------------- /lib/zsh/lib/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/lib/aliases.zsh -------------------------------------------------------------------------------- /lib/zsh/lib/completions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/lib/completions.zsh -------------------------------------------------------------------------------- /lib/zsh/lib/config.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/lib/config.zsh -------------------------------------------------------------------------------- /lib/zsh/lib/prompt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/lib/prompt.zsh -------------------------------------------------------------------------------- /lib/zsh/plugins/_core/interactive.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/plugins/_core/interactive.zsh -------------------------------------------------------------------------------- /lib/zsh/plugins/command-not-found/interactive.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/plugins/command-not-found/interactive.zsh -------------------------------------------------------------------------------- /lib/zsh/plugins/fzf/interactive.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/plugins/fzf/interactive.zsh -------------------------------------------------------------------------------- /lib/zsh/profile.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarshall/dotfiles/HEAD/lib/zsh/profile.zsh --------------------------------------------------------------------------------