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 theme
autoload -U promptinit; promptinit
prompt purer
WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
@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