Skip to content

Instantly share code, notes, and snippets.

@u0d7i
u0d7i / all_gists_via_api.txt
Last active April 18, 2019 13:12
Download all my gists (via API)
$ wget -q -O - https://api.github.com/users/u0d7i/gists | grep raw_url | awk -F\" '{print $4}' | xargs -n1 wget
$ wget -e robots=off --wait 1 http://your.site.here
echo "set enable-bracketed-paste off" >> ~/.inputrc
@u0d7i
u0d7i / disable_vim_auto_visual_on_mouse.txt
Last active February 27, 2024 14:08
Disable vim automatic visual mode on mouse select
Disable vim automatic visual mode on mouse select
issue: :set mouse-=a
add to ~/.vimrc: set mouse-=a
my ~/.vimrc for preserving global defaults and only changing one option:
source $VIMRUNTIME/defaults.vim
set mouse-=a