├── .gitignore ├── README.org ├── Vagrantfile ├── clojure_emacs.sh └── dotfiles ├── .emacs.d ├── eshell │ └── alias └── init.el ├── .profile └── .tmux.conf /.gitignore: -------------------------------------------------------------------------------- 1 | /.vagrant 2 | -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seajure/emacs-clojure-vagrant/HEAD/README.org -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seajure/emacs-clojure-vagrant/HEAD/Vagrantfile -------------------------------------------------------------------------------- /clojure_emacs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seajure/emacs-clojure-vagrant/HEAD/clojure_emacs.sh -------------------------------------------------------------------------------- /dotfiles/.emacs.d/eshell/alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seajure/emacs-clojure-vagrant/HEAD/dotfiles/.emacs.d/eshell/alias -------------------------------------------------------------------------------- /dotfiles/.emacs.d/init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seajure/emacs-clojure-vagrant/HEAD/dotfiles/.emacs.d/init.el -------------------------------------------------------------------------------- /dotfiles/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seajure/emacs-clojure-vagrant/HEAD/dotfiles/.profile -------------------------------------------------------------------------------- /dotfiles/.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seajure/emacs-clojure-vagrant/HEAD/dotfiles/.tmux.conf --------------------------------------------------------------------------------