- :help keyword - open help for keyword
- :o file - open file
- :saveas file - save file as
- :close - close current pane
This file contains 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
/**<<<<<<<<< Bash scripting cheatsheet >>>>>>>>**/ | |
/*********** Basic Example ************/ | |
// A simple copy script | |
#!/bin/bash | |
cp $1 $2 |
This file contains 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
# NERDTree | |
Switch between Vim and Nerd Tree | |
Ctrl+ww --------------------------------- cycle though all windows | |
Ctrl+w and then right arrow ------------- cycle though all windows | |
Ctrl+w and then left arrow ------------- cycle though all windows | |
Ctrl+wh ------- takes you left a window | |
Ctrl+wj ------- takes you down a window | |
Ctrl+wk ------- takes you up a window | |
Ctrl+wl ------- takes you right a window |
This file contains 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
#Cursor movement | |
h - move left | |
j - move down | |
k - move up | |
l - move right | |
ctrl-b - page up | |
ctrl-f - page down | |
% - jump to matching brace | |
w - jump by start of words (punctuation considered words) |
This file contains 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
FZF Fuzzy completion | |
Key bindings for command line | |
CTRL-T ----------------------------------------- Paste the selected files and directories onto the command line | |
CTRL-R ----------------------------------------- Paste the selected command from history onto the command line | |
ALT-C ------------------------------------------ cd into the selected directory | |
Files and directories |
This file contains 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
1) Install Hyper-V (DON”T NEED THIS) | |
Go to the Windows icon and start the Server Manager | |
Click on Manage > Add Roles and Features | |
Click on Next repeatedly, until you get to the Select server roles screen | |
Select Hyper-V and click Next | |
When prompted to add additional required features, click on Add Features | |
Click on Add Features | |
Click Next | |
Under Remote Server Administration Tools > Role Administration Tools, select Hyper-V | |
Management Tools (if not already selected) and click on Next |
OlderNewer