Skip to content

Instantly share code, notes, and snippets.

@jhochwald
Created November 5, 2019 22:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhochwald/ef42ddade6bfe76de28bdb2c593b5b20 to your computer and use it in GitHub Desktop.
Save jhochwald/ef42ddade6bfe76de28bdb2c593b5b20 to your computer and use it in GitHub Desktop.
Disable vim automatic visual mode on mouse select
# Create File if needed
touch ~/.vimrc
# enable Backspace workaround
echo "set bs=2" > ~/.vimrc
# if you have an existing ~/.vimrc - use >> instead of > to prevent overwriting
# Disable vim automatic visual mode on mouse select
echo "set mouse-=a" >> ~/.vimrc
# Enable syntax highlighting (reenable, just to make sure)
echo "syntax enable" >> ~/.vimrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment