├── .gitignore ├── HOME ├── .ammonite │ ├── README.md │ └── predef.sc ├── .bash_aliases └── .zsh_aliases ├── README.md ├── SSD ├── README.md └── etc │ └── rc.local ├── Scala ├── .ammonite │ └── predef.sc ├── README.md └── install-scala.sh ├── Vim └── README.md ├── archive └── README.md ├── dot-files ├── README.md └── zsh │ ├── .my-docker-common │ ├── .my-git-common │ └── .my-shell-common ├── other └── gitignore_files │ ├── eclipse_java_spring │ └── .gitignore │ └── eclipse_scala_play │ └── .gitignore ├── scripts ├── README-kr.md ├── README.md ├── String.md ├── backup-mysql-db.sh ├── ps-killer.sh ├── setup-scala.sh ├── tomcat-run.sh └── zsh │ ├── iterm2-how-to-use-ligatures.png │ ├── osx-terminal-change-font-to-powerline.png │ └── zsh-installation.md └── tmux └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | 3 | .idea -------------------------------------------------------------------------------- /HOME/.ammonite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/HOME/.ammonite/README.md -------------------------------------------------------------------------------- /HOME/.ammonite/predef.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/HOME/.ammonite/predef.sc -------------------------------------------------------------------------------- /HOME/.bash_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/HOME/.bash_aliases -------------------------------------------------------------------------------- /HOME/.zsh_aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/HOME/.zsh_aliases -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/README.md -------------------------------------------------------------------------------- /SSD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/SSD/README.md -------------------------------------------------------------------------------- /SSD/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/SSD/etc/rc.local -------------------------------------------------------------------------------- /Scala/.ammonite/predef.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/Scala/.ammonite/predef.sc -------------------------------------------------------------------------------- /Scala/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/Scala/README.md -------------------------------------------------------------------------------- /Scala/install-scala.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/Scala/install-scala.sh -------------------------------------------------------------------------------- /Vim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/Vim/README.md -------------------------------------------------------------------------------- /archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/archive/README.md -------------------------------------------------------------------------------- /dot-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/dot-files/README.md -------------------------------------------------------------------------------- /dot-files/zsh/.my-docker-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/dot-files/zsh/.my-docker-common -------------------------------------------------------------------------------- /dot-files/zsh/.my-git-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/dot-files/zsh/.my-git-common -------------------------------------------------------------------------------- /dot-files/zsh/.my-shell-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/dot-files/zsh/.my-shell-common -------------------------------------------------------------------------------- /other/gitignore_files/eclipse_java_spring/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/other/gitignore_files/eclipse_java_spring/.gitignore -------------------------------------------------------------------------------- /other/gitignore_files/eclipse_scala_play/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/other/gitignore_files/eclipse_scala_play/.gitignore -------------------------------------------------------------------------------- /scripts/README-kr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/scripts/README-kr.md -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/scripts/String.md -------------------------------------------------------------------------------- /scripts/backup-mysql-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/scripts/backup-mysql-db.sh -------------------------------------------------------------------------------- /scripts/ps-killer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/scripts/ps-killer.sh -------------------------------------------------------------------------------- /scripts/setup-scala.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/scripts/setup-scala.sh -------------------------------------------------------------------------------- /scripts/tomcat-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/scripts/tomcat-run.sh -------------------------------------------------------------------------------- /scripts/zsh/iterm2-how-to-use-ligatures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/scripts/zsh/iterm2-how-to-use-ligatures.png -------------------------------------------------------------------------------- /scripts/zsh/osx-terminal-change-font-to-powerline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/scripts/zsh/osx-terminal-change-font-to-powerline.png -------------------------------------------------------------------------------- /scripts/zsh/zsh-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/scripts/zsh/zsh-installation.md -------------------------------------------------------------------------------- /tmux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-lee/for-linux/HEAD/tmux/README.md --------------------------------------------------------------------------------