mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-24 19:19:52 +00:00
7 lines
173 B
Bash
7 lines
173 B
Bash
#!/bin/bash
|
|
# Description: My Emacs configuration
|
|
set -e
|
|
|
|
if ! [ -d ${HOME}/.emacs.d ]; then
|
|
_run "Install .emacs.d" ln -s ${HOME}/dotfiles/.emacs.d ${HOME}/.emacs.d
|
|
fi
|