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
| [alias] | |
| br = branch | |
| st = status | |
| lg = log | |
| co = checkout | |
| ca = commit --amend | |
| ign = ls-files -o -i --exclude-standard | |
| sdf = diff-tree --no-commit-id --name-only -r | |
| author = log --no-merges --stat --author="jude" --name-only --pretty=format:"" #show all files edited by jude | |
| [core] |
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
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| call plug#begin('~/.vim/plugged') | |
| " let Vundle manage Vundle, required | |
| " Plug 'gmarik/Vundle.vim' | |
| " Color schemes | |
| Plug 'phanviet/vim-monokai-pro' |
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
| source /Users/fullscale/antigen.zsh | |
| # Load the oh-my-zsh's library. | |
| antigen use oh-my-zsh | |
| # Bundles from the default repo (robbyrussell's oh-my-zsh). | |
| antigen bundle git | |
| antigen bundle heroku | |
| antigen bundle pip |
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
| set -g mouse on | |
| bind-key h split-window -h | |
| bind-key v split-window -v | |
| bind j select-pane -L | |
| bind k select-pane -D | |
| bind i select-pane -U | |
| bind l select-pane -R |
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
| set nocompatible " be iMproved, required | |
| filetype off " required | |
| call plug#begin('~/.vim/plugged') | |
| " let Vundle manage Vundle, required | |
| " Plug 'gmarik/Vundle.vim' | |
| " Color schemes | |
| Plug 'phanviet/vim-monokai-pro' |
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
| { | |
| "solargraph.diagnostics": true, | |
| "solargraph.formatting": true, | |
| "solargraph.hover": true, | |
| "typescript.suggest.enabled": true, | |
| "tsserver.enableJavascript": true, | |
| "javascript.suggest.enabled": true, | |
| "eslint.enable": true, | |
| "eslint.filetypes": [ | |
| "javascript", |
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
| launch tmux -Lkitty | |
| font_family Fira Code Retina | |
| font_size 10.0 | |
| bold_font auto | |
| italic_font auto | |
| bold_italic_font auto | |
| /*window_margin_width 0.0*/ | |
| /*window_padding_width 0.0*/ |
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
| package main | |
| import ( | |
| "bytes" | |
| "encoding/json" | |
| "fmt" | |
| "io/ioutil" | |
| "log" | |
| "net/http" | |
| "os" |
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
| keycode Caps_Lock = Mode_switch | |
| !Map Capslock + h/j/k/l to arrow keys | |
| keysym h = h H Left | |
| keysym l = l L Right | |
| keysym k = k K Up | |
| keysym j = j J Down | |
| !Map Capslock + ESC to ` | |
| !Map Capslock + Shift + Esc to ~ |
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
| # frozen_string_literal: true | |
| module ChainOfResponsibility | |
| attr_accessor :next | |
| def handle(result) | |
| @next&.handle(result) || result # Run next handler or return result | |
| end | |
| end |
OlderNewer