Skip to content

Instantly share code, notes, and snippets.

View diegotf30's full-sized avatar

Diego Treviño diegotf30

  • Google
  • Mexico
View GitHub Profile
# Setup steps:
# - Pre-requisites: homebrew, npm, git
# /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash
# - Install theme purer (https://github.com/DFurnes/purer)
# sudo npm install --global purer-prompt
# - Install plugin enhancd (https://github.com/babarot/enhancd)
# git clone https://github.com/babarot/enhancd.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/enhancd
# - Install plugin zsh-syntax-highlighting
# git clone https://github.com/zsh-users/zsh-syntax-highlighting ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
@diegotf30
diegotf30 / settings.json
Created September 22, 2021 18:29
VSCOde settings
{
"files.autoSave": "afterDelay",
"sync.gist": "1f89b61bfff7b6f2e135986bd913189a",
"workbench.iconTheme": "material-icon-theme",
"editor.renderIndentGuides": true,
"go.formatTool": "goimports",
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "all",
"explorer.confirmDelete": false,
"terminal.integrated.inheritEnv": false,
@diegotf30
diegotf30 / keybindings.json
Last active September 24, 2021 00:06
VSCode keyboard shortcuts
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "cmd+g",
"command": "-workbench.action.gotoLine"
},
{
"key": "ctrl+t",
"command": "-workbench.action.showAllSymbols"
},
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on