minor edits
This commit is contained in:
parent
b95248b844
commit
f7e6748cfe
2 changed files with 5 additions and 6 deletions
9
spacemacs.zsh
Normal file → Executable file
9
spacemacs.zsh
Normal file → Executable file
|
@ -1,14 +1,13 @@
|
|||
#!/bin/zsh
|
||||
#This will install Spacemacs (again)
|
||||
#cleanup
|
||||
echo "Removing old emacs"
|
||||
if [ -e ~/.emacs.d/]
|
||||
then
|
||||
mv ~/.emacs.d ~/doom.d
|
||||
if [ -d "$HOME/.emacs.d" ]; then
|
||||
echo "Moved Doom Config"
|
||||
mv ~/.emacs.d ~/doom.d
|
||||
fi
|
||||
|
||||
#Select Stable or Develop
|
||||
read -p "Should we use the development version of emacs?" dist
|
||||
read -n1 -p $"Should we use the development version of emacs? \n" dist
|
||||
if [[ $dist = y ]] then
|
||||
git clone -b develop https://github.com/syl20bnr/spacemacs ~/.emacs.d
|
||||
else
|
||||
|
|
2
udeps.sh
2
udeps.sh
|
@ -26,7 +26,7 @@ read -n1 -p $'Does this system need a ssh server?\n' REPLY
|
|||
fi
|
||||
read -n1 -p $'\nDoes this system have a GUI?\n' REPLY
|
||||
if [[ $REPLY == [Yy] ]]; then
|
||||
sudo apt-get install synaptic
|
||||
sudo apt-get install synaptic emacs
|
||||
else
|
||||
sudo apt-get install emacs-nox
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue