├── .gitignore ├── 01_path ├── 03_help ├── 03_zkbd ├── 04_tmux ├── 05_apt ├── 05_editor ├── 05_grep ├── 05_ls ├── 05_network ├── 05_octave ├── 05_rsync ├── 05_vpn ├── 06_dirs ├── 06_finding ├── 06_git ├── 06_history ├── 06_less ├── 06_man ├── 06_rbenv ├── 07_completion ├── 10_bindkey ├── 10_chrome ├── 10_dash ├── 10_hooks ├── 10_prompt ├── README.md ├── default_zkbd ├── disabled ├── 02_update ├── 05_python ├── 05_ruby ├── 05_seq ├── 05_video ├── 06_zmv └── 09_abbreviations ├── env ├── func ├── get-ruby-version ├── is-mac-terminal └── prompt_minimal_vcs_setup ├── install └── rc /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.swo 3 | -------------------------------------------------------------------------------- /01_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/01_path -------------------------------------------------------------------------------- /03_help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/03_help -------------------------------------------------------------------------------- /03_zkbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/03_zkbd -------------------------------------------------------------------------------- /04_tmux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/04_tmux -------------------------------------------------------------------------------- /05_apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/05_apt -------------------------------------------------------------------------------- /05_editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/05_editor -------------------------------------------------------------------------------- /05_grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/05_grep -------------------------------------------------------------------------------- /05_ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/05_ls -------------------------------------------------------------------------------- /05_network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/05_network -------------------------------------------------------------------------------- /05_octave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/05_octave -------------------------------------------------------------------------------- /05_rsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/05_rsync -------------------------------------------------------------------------------- /05_vpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/05_vpn -------------------------------------------------------------------------------- /06_dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/06_dirs -------------------------------------------------------------------------------- /06_finding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/06_finding -------------------------------------------------------------------------------- /06_git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/06_git -------------------------------------------------------------------------------- /06_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/06_history -------------------------------------------------------------------------------- /06_less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/06_less -------------------------------------------------------------------------------- /06_man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/06_man -------------------------------------------------------------------------------- /06_rbenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/06_rbenv -------------------------------------------------------------------------------- /07_completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/07_completion -------------------------------------------------------------------------------- /10_bindkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/10_bindkey -------------------------------------------------------------------------------- /10_chrome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/10_chrome -------------------------------------------------------------------------------- /10_dash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/10_dash -------------------------------------------------------------------------------- /10_hooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/10_hooks -------------------------------------------------------------------------------- /10_prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/10_prompt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/README.md -------------------------------------------------------------------------------- /default_zkbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/default_zkbd -------------------------------------------------------------------------------- /disabled/02_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/disabled/02_update -------------------------------------------------------------------------------- /disabled/05_python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/disabled/05_python -------------------------------------------------------------------------------- /disabled/05_ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/disabled/05_ruby -------------------------------------------------------------------------------- /disabled/05_seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/disabled/05_seq -------------------------------------------------------------------------------- /disabled/05_video: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/disabled/05_video -------------------------------------------------------------------------------- /disabled/06_zmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/disabled/06_zmv -------------------------------------------------------------------------------- /disabled/09_abbreviations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/disabled/09_abbreviations -------------------------------------------------------------------------------- /env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/env -------------------------------------------------------------------------------- /func/get-ruby-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/func/get-ruby-version -------------------------------------------------------------------------------- /func/is-mac-terminal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/func/is-mac-terminal -------------------------------------------------------------------------------- /func/prompt_minimal_vcs_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/func/prompt_minimal_vcs_setup -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/install -------------------------------------------------------------------------------- /rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattfoster/zshkit/HEAD/rc --------------------------------------------------------------------------------