Skip to content

Instantly share code, notes, and snippets.

View FarisMarouane's full-sized avatar

Marouane Faris FarisMarouane

View GitHub Profile
@FarisMarouane
FarisMarouane / remove env file from git
Created November 16, 2020 21:55 — forked from gjerokrsteski/remove env file from git forever
remove env file from git history
echo '.env' >> .gitignore
git rm -r --cached .env
git add .gitignore
git commit -m 'untracking .env'
git push origin master
code --install-extension Orta.vscode-jest \
--install-extension PKief.material-icon-theme \
--install-extension PeterJausovec.vscode-docker \
--install-extension bierner.markdown-preview-github-styles \
--install-extension christian-kohler.path-intellisense \
--install-extension clinyong.vscode-css-modules \
--install-extension codezombiech.gitignore \
--install-extension dbaeumer.vscode-eslint \
--install-extension eamodio.gitlens \
--install-extension ecmel.vscode-html-css \
@FarisMarouane
FarisMarouane / .zshrc
Created May 7, 2018 12:57 — forked from Justkant/.zshrc
zgen zshrc
# zgen installation
# git clone https://github.com/tarjoilija/zgen.git "${HOME}/.zgen"
# load zgen
source "${HOME}/.zgen/zgen.zsh"
alias emacs="emacs -nw"
alias ne="emacs"
alias y='yarn'
alias yui='y upgrade-interactive --latest'