Skip to content

Instantly share code, notes, and snippets.

@pbuzulan
Created March 10, 2020 15:05
Show Gist options
  • Save pbuzulan/c17e275d0b0a2fd745fd198eac1913bf to your computer and use it in GitHub Desktop.
Save pbuzulan/c17e275d0b0a2fd745fd198eac1913bf to your computer and use it in GitHub Desktop.
Disable vim automatic visual mode on mouse select
if file .vimrc does not exists:
touch ~/.vimrc
echo "set mouse-=a" > ~/.vimrc
source ~/.vimrc
else:
vim ~/.vimrc: set mouse-=a
source ~/.vimrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment