I hereby claim:
- I am kuka on github.
- I am kuanysh (https://keybase.io/kuanysh) on keybase.
- I have a public key ASDhCD9zmcRw6ojmIM75_aCSObtwahZmfC4hHCJKM9dElQo
To claim this, I am signing this object:
git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
– git lg | |
– git lg -p – with changes |
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --" |
#!/usr/bin/env bash | |
curl https://s3.amazonaws.com/heroku-jvm-buildpack-vi/vim-7.3.tar.gz --output vim.tar.gz | |
mkdir vim && tar xzvf vim.tar.gz -C vim | |
export PATH=$PATH:/app/vim/bin |
// AutoCAD 0-255 colors mapped with equivalents in HEX and RGB | |
// source: http://sub-atomic.com/~moses/acadcolors.html | |
export default [{ | |
"aci": 0, | |
"hex": "#000000", | |
"rgb": "rgb(0,0,0)" | |
}, { | |
"aci": 1, | |
"hex": "#FF0000", |
export const normalizeCase = (str: string) => | |
str | |
.replace(/\b(?:[a-zA-Z]\.){2,}/, a => a.toUpperCase()) | |
.replace(/(?!\b(?:[a-zA-Z]\.){2,})/, a => a.toLowerCase()) | |
.replace(/(\w*[a-z0-9_]+\w*)/g, a => a.toLowerCase()) |
I hereby claim:
To claim this, I am signing this object:
########################### | |
# Configuration | |
########################### | |
# use 256 term for pretty colors | |
set -g terminal-overrides ',xterm-256color:Tc' | |
set -g default-terminal "tmux-256color" | |
set -as terminal-overrides ',xterm*:sitm=\E[3m' | |
# use true colors |
call plug#begin('~/.vim/plugged') | |
" Editing | |
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
Plug 'junegunn/fzf.vim' | |
Plug 'junegunn/limelight.vim' | |
Plug 'terryma/vim-multiple-cursors' | |
Plug 'jparise/vim-graphql' | |
Plug 'yggdroot/indentline' |
# | |
# Executes commands at the start of an interactive session. | |
# | |
# Authors: | |
# Sorin Ionescu <[email protected]> | |
# | |
# Source Prezto. | |
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then | |
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" |
# | |
# Sets Prezto options. | |
# | |
# Authors: | |
# Sorin Ionescu <[email protected]> | |
# | |
# | |
# General | |
# |