mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-25 11:09:52 +00:00
8 lines
173 B
Text
8 lines
173 B
Text
|
#!/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
|