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
{ | |
"name": "example", | |
"version": "0.0.1", | |
"description": "examplio", | |
"main": "index.js", | |
"author": "Eugene Chulkov", | |
"license": "MIT", | |
"dependencies": {}, | |
"devDependencies": { | |
"husky": "^3.0.8", |
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] | |
# tips from Harry Roberts | |
# https://csswizardry.com/2017/05/little-things-i-like-to-do-with-git/ | |
stats = !git shortlog -sn --all --no-merges | |
recent = !git for-each-ref --count=5 --sort=-committerdate refs/heads/ --format='%(refname:short)' | |
# tips from Rob Miller | |
# https://gist.github.com/robmiller/6018582 | |
br-name = "!git rev-parse --abbrev-ref HEAD" | |
diffmaster = "!git log --oneline origin/master..$(git br-name)" |
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 t_RV= | |
set t_vb= | |
call plug#begin('~/.vim/plugged') | |
" Initialize plugin system | |
Plug 'easymotion/vim-easymotion' | |
" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align | |
Plug 'junegunn/vim-easy-align' | |
" Any valid git URL is allowed |
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
# origin: https://github.com/JSMonk/my-vimrc/blob/master/.vimrc | |
call plug#begin('~/.vim/plugged') | |
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } | |
Plug 'bling/vim-airline' | |
Plug 'othree/javascript-libraries-syntax.vim' | |
Plug 'pangloss/vim-javascript' | |
Plug 'isRuslan/vim-es6' | |
Plug 'mattn/emmet-vim' |
NewerOlder