Install the OpenSSL on Debian based systems
sudo apt-get install openssl| # System config | |
| # -------------- | |
| # change the default password | |
| passwd | |
| # keep the system up to date | |
| apt-get update -y && apt full-upgrade -y | |
| apt -y install open-vm-tools-desktop fuse | |
| /root/Desktop/restart-vm-tools |
| "\e[A": history-search-backward | |
| "\e[B": history-search-forward | |
| set show-all-if-ambiguous on | |
| set completion-ignore-case on | |
| # go right to showing multiple options | |
| set show-all-if-ambiguous on | |
| # TAB by itself cycles through options | |
| "\t": menu-complete |
| #Git aliases | |
| alias gc="git commit -m " | |
| alias ga="git add ." | |
| alias gp="git push -u origin master" | |
| alias gpl="git pull" | |
| alias gco="git checkout -b " | |
| alias gar="git remote add origin “ | |
| alias gm=“git merge “ | |
| G* (){ |
| #~/.bashrc: executed by bash(1) for non-login shells. | |
| # Note: PS1 and umask are already set in /etc/profile. You should not | |
| # need this unless you want different defaults for root. | |
| # PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ ' | |
| # umask 022 | |
| # You may uncomment the following lines if you want `ls' to be colorized: | |
| export LS_OPTIONS=' --color=auto' | |
| eval "`dircolors`" |
| #~/.bashrc: executed by bash(1) for non-login shells. | |
| # Note: PS1 and umask are already set in /etc/profile. You should not | |
| # need this unless you want different defaults for root. | |
| # PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ ' | |
| # umask 022 | |
| # You may uncomment the following lines if you want `ls' to be colorized: | |
| export LS_OPTIONS=' --color=auto' | |
| eval "`dircolors`" |
| "\e[A": history-search-backward | |
| "\e[B": history-search-forward | |
| set show-all-if-ambiguous on | |
| set completion-ignore-case on | |
| # go right to showing multiple options | |
| set show-all-if-ambiguous on | |
| # TAB by itself cycles through options | |
| "\t": menu-complete |
| @echo off | |
| @reg add "HKEY_CLASSES_ROOT\*\shell\Ouvrir avec Sublime Text 2" /t REG_SZ /v "" /d "Ouvrir avec Sublime Text 2" /f | |
| @reg add "HKEY_CLASSES_ROOT\*\shell\Ouvrir avec Sublime Text 2\command" /t REG_SZ /v "" /d "\"D:\KrYpTeD\Programmes\Sublime Text 2.0.1 x64\sublime_text.exe\" \"%%1\"" /f | |
| @reg add "HKEY_CLASSES_ROOT\*\shell\Ouvrir avec Sublime Text 2" /t REG_EXPAND_SZ /v "Icon" /d "D:\KrYpTeD\Programmes\Sublime Text 2.0.1 x64\sublime_text.exe,0" | |
| pause |
| [ { "keys": ["ctrl+n"], "command": "advanced_new_file"}, | |
| { "keys": ["ctrl+shift+n"], "command": "advanced_new_file", "args": {"is_python": true}}, | |
| { "keys": ["ctrl+["], "command": "previous_edit" }, | |
| { "keys": ["ctrl+]"], "command": "next_edit" }, | |
| { "keys": ["ctrl+w"], "command": "undo" }, | |
| { "keys": ["ctrl+shift+w"], "command": "redo" }, | |
| { "keys": ["ctrl+q"], "command": "move_to", "args": {"to": "bol", "extend": false} }, | |
| { "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "eol", "extend": false} }, | |
| { "keys": ["ctrl+z"], "command": "close" }, | |
| { "keys": ["alt+d"], "command": "toggle_minimap" }, |