Skip to content

Instantly share code, notes, and snippets.

@kjkta
kjkta / .vimrc
Last active March 10, 2020 08:56
" Plugins will be downloaded under the specified directory.
call plug#begin('~/.vim/plugged')
" General
Plug 'vim-airline/vim-airline'
Plug 'airblade/vim-gitgutter'
Plug 'git@github.com:dracula/vim.git', { 'as': 'dracula' }
Plug 'ctrlpvim/ctrlp.vim'
Plug 'mileszs/ack.vim'
@kjkta
kjkta / .bash_profile
Last active June 17, 2019 07:10
Init - backing up this time lol
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
# Brew
export PATH=/usr/local/bin:$PATH
# Prompt
# Download from https://raw.githubusercontent.com/git/git/8976500cbbb13270398d3b3e07a17b8cc7bff43f/contrib/completion/git-prompt.sh
source ~/.git-prompt.sh
@kjkta
kjkta / gen-flow-files.sh
Created June 13, 2019 14:59
Bash script to copy source files into a directory and append `.flow`
cp -r src/*.js dist/;
for f in dist/*; do mv $f ./dist/`basename $f `.flow; done;
@kjkta
kjkta / basket.js
Last active February 3, 2016 07:55
'use strict'
let cash = 1000
let tax = 0.01
let basket1 = {
'Phone': 130,
'Accessory': 30,
}
@kjkta
kjkta / Overview Table.markdown
Created December 7, 2015 03:57
Overview Table
@kjkta
kjkta / Detail Table.markdown
Created December 7, 2015 03:57
Detail Table