h
,j
,k
,l
- left, down, up, rightH
,M
,L
- move to top, middle, bottom of screenw
- jump to start of next wordb
- jump to start of previous word0
- jump to start of line^
- jump to first non-blank character of line
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
// settings | |
{ | |
"cSpell.checkOnlyEnabledFileTypes":false, | |
"cSpell.userWords":[ | |
"agentkeepalive", | |
"Cruella", | |
"dalmation", | |
"Elzanaty", | |
"vfuk" | |
], |
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
{ | |
"[css]":{ | |
"editor.defaultFormatter":"vscode.css-language-features" | |
}, | |
"[dockerfile]":{ | |
"editor.defaultFormatter":"foxundermoon.shell-format" | |
}, | |
"[html]":{ | |
"editor.defaultFormatter":"vscode.html-language-features" | |
}, |
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
-- See `:help mapleader` | |
-- NOTE: Must happen before plugins are required (otherwise wrong leader will be used) | |
vim.g.mapleader = ' ' | |
vim.g.maplocalleader = ' ' | |
-- disable netrw at the very start of your init.lua | |
vim.g.loaded_netrw = 1 | |
vim.g.loaded_netrwPlugin = 1 | |
-- Install package manager |
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
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | |
</head> | |
<div class="containers"> |
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
########## | |
# Example 1: Create a range from 0 to 10 with steps of 2 | |
########## | |
#Type your code here. | |
rng= | |
print(list(rng)) |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Modern JS Essentials for React</title> | |
<meta charset="UTF-8" /> | |
<meta name="author" content="Mohammed Elzanaty"> | |
<link rel="icon" | |
href="https://cdn-icons.flaticon.com/png/512/4726/premium/4726005.png?token=exp=1654158276~hmac=75e5b0835cff1af139af2ff074548af0" | |
type="image/png" /> |
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
export NVM_DIR=~/.nvm | |
source '$(brew --prefix nvm)'/nvm.sh | |
# ---------------------- | |
# Git Aliases | |
# ---------------------- | |
alias ga='git add' | |
alias gaa='git add .' | |
alias gaaa='git add --all' | |
alias gau='git add --update' | |
alias gb='git branch' |
NewerOlder