├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── configs ├── bash_profile ├── bashrc.d │ ├── 10_host_alias.sh │ ├── 20_envs.sh │ ├── 30_aliases.sh │ └── 40_keychain.sh ├── gitconfig ├── karabiner_bash_emacs.json ├── ssh_config ├── tmux.conf └── vimrc ├── patches ├── gitconfig_mosky.patch ├── tmux.conf_1.x.patch ├── tmux.conf_2_old.patch └── vimrc_7.x.patch └── scripts ├── config ├── install-homebrew ├── install-homebrew-formulas ├── install-pip-packages ├── install-vim-plug └── install-vim-plug-plugins /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/README.md -------------------------------------------------------------------------------- /configs/bash_profile: -------------------------------------------------------------------------------- 1 | . ~/.bashrc 2 | -------------------------------------------------------------------------------- /configs/bashrc.d/10_host_alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/configs/bashrc.d/10_host_alias.sh -------------------------------------------------------------------------------- /configs/bashrc.d/20_envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/configs/bashrc.d/20_envs.sh -------------------------------------------------------------------------------- /configs/bashrc.d/30_aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/configs/bashrc.d/30_aliases.sh -------------------------------------------------------------------------------- /configs/bashrc.d/40_keychain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/configs/bashrc.d/40_keychain.sh -------------------------------------------------------------------------------- /configs/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/configs/gitconfig -------------------------------------------------------------------------------- /configs/karabiner_bash_emacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/configs/karabiner_bash_emacs.json -------------------------------------------------------------------------------- /configs/ssh_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/configs/ssh_config -------------------------------------------------------------------------------- /configs/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/configs/tmux.conf -------------------------------------------------------------------------------- /configs/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/configs/vimrc -------------------------------------------------------------------------------- /patches/gitconfig_mosky.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/patches/gitconfig_mosky.patch -------------------------------------------------------------------------------- /patches/tmux.conf_1.x.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/patches/tmux.conf_1.x.patch -------------------------------------------------------------------------------- /patches/tmux.conf_2_old.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/patches/tmux.conf_2_old.patch -------------------------------------------------------------------------------- /patches/vimrc_7.x.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/patches/vimrc_7.x.patch -------------------------------------------------------------------------------- /scripts/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/scripts/config -------------------------------------------------------------------------------- /scripts/install-homebrew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/scripts/install-homebrew -------------------------------------------------------------------------------- /scripts/install-homebrew-formulas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/scripts/install-homebrew-formulas -------------------------------------------------------------------------------- /scripts/install-pip-packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/scripts/install-pip-packages -------------------------------------------------------------------------------- /scripts/install-vim-plug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moskytw/mosky-mini-configs/HEAD/scripts/install-vim-plug -------------------------------------------------------------------------------- /scripts/install-vim-plug-plugins: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | vim +PlugInstall +qa > /dev/null 4 | --------------------------------------------------------------------------------