diff --git a/debian-setup.sh b/debian-setup.sh index f132324..fa59917 100644 --- a/debian-setup.sh +++ b/debian-setup.sh @@ -41,6 +41,12 @@ apt update echo "[INFO] Installing necessary tools" apt install -y curl vim git sudo ca-certificates apt-transport-https haveged tree +# Vim no mouse select +touch ~/.vimrc # make sure file exists +sed -i '/set mouse-=a /d' ~/.vimrc +sed -i '/set mouse=a /d' ~/.vimrc +echo "set mouse-=a" >> ~/.vimrc + # install ssh service if ! hash sshd 2>/dev/null; then echo "[INFO] Installing ssh service"