This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "context": "Editor && (vim_mode == normal || vim_mode == visual) && !VimWaiting && !menu", | |
| "bindings": { | |
| // put key-bindings here if you want them to work in normal & visual mode | |
| // Git | |
| "space g h d": "editor::ToggleSelectedDiffHunks", | |
| "space g h r": "git::Restore", | |
| // Toggle inlay hints |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ######################## Linux ############################# | |
| ### Auto Install Anaconda in Linux | |
| mkdir Downloads | |
| cd Downloads | |
| wget "https://repo.continuum.io/archive/Anaconda3-5.0.1-Linux-x86_64.sh" -O "Anaconda3-5.0.1-Linux-x86_64.sh" | |
| chmod +x Anaconda3-5.0.1-Linux-x86_64.sh | |
| sudo sh "Anaconda3-5.0.1-Linux-x86_64.sh" -b | |
| cd $HOME | |
| rm -r Downloads |