This file contains 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
#!/bin/sh | |
# The host must have already installed haste and pbcopy | |
# The expected param is a path to any given file | |
cat $1 | haste | pbcopy |
This file contains 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 nocp | |
set t_Co=256 | |
set shell=bash\ --norc | |
"set runtimepath^=~/.vim/bundle/ctrlp.vim | |
let mapleader = "," | |
"javascript-libraries-syntax.vim | |
let g:used_javascript_libs = 'underscore,jquery,angularjs,angularui' | |
"EditorConfig + fugitive |
This file contains 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
export LANG="en_US.UTF-8" | |
export LC_COLLATE="en_US.UTF-8" | |
export LC_CTYPE="UTF-8" | |
export LC_MESSAGES="en_US.UTF-8" | |
export LC_MONETARY="en_US.UTF-8" | |
export LC_NUMERIC="en_US.UTF-8" | |
export LC_TIME="en_US.UTF-8" | |
export LC_ALL="en_US.UTF-8" | |
set DEFAULT_USER="Éder" |
This file contains 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 default_path /usr/bin /usr/sbin /bin /sbin | |
set npm_path $HOME/npm/bin | |
set homebrew /usr/local/bin /usr/local/sbin | |
set -gx PATH $homebrew $npm_path $default_path | |
set PATH /Applications/Postgres.app/Contents/Versions/9.4/bin $PATH | |
#set -xg PATH /usr/local/sbin $HOME/npm/bin $PATH | |
if test -z $rvm_bin_path | |
exec bash --login -c "exec fish" ^&1 |
This file contains 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
{ | |
"rules": { | |
"no-console": [0], | |
"strict": [2, "global"], | |
"no-undef": [ | |
2 | |
], | |
"indent": [ | |
2, | |
4 |
This file contains 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 -xg EDITOR vim | |
set -xg NODE_ENV development | |
set -gx FZF_DEFAULT_COMMAND 'ag -l -g ""' | |
#set -x PATH /usr/local/opt/go/libexec/bin $PATH | |
#set -x GOPATH $HOME/go | |
#set -x GOROOT /usr/local/opt/go/libexec | |
#set -x PATH $PATH $GOPATH/bin | |
#set -x PATH $PATH $GOROOT/bin | |
alias gitst "git status" | |
alias git "hub" |
This file contains 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
function notifier | |
switch (count $argv) | |
case 0 1 | |
echo "Usage: notifier [notification message] [title] [subitle]" | |
case 2 | |
set notification "display notification \"$argv[1]\" with title \"$argv[2]\"" | |
osascript -e $notification | |
case 3 | |
set notification "display notification \"$argv[1]\" with title \"$argv[2]\" subtitle \"$argv[3]\"" | |
osascript -e $notification |
This file contains 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 shell=/bin/sh | |
set termguicolors | |
set number | |
set ruler | |
set relativenumber | |
set cursorline | |
set synmaxcol=1000 | |
set clipboard=unnamed | |
"set list listchars=tab:\ ,eol:¬,trail: |
This file contains 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 shell=/bin/sh | |
set termguicolors | |
set number | |
set ruler | |
set relativenumber | |
set cursorline | |
"set synmaxcol=1000 | |
set clipboard=unnamed | |
"set list listchars=tab:\ ,eol:¬,trail: |
This file contains 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
// PRs welcome! | |
// import system dependencies | |
const { | |
lstatSync, | |
readdirSync, | |
createReadStream, | |
createWriteStream, | |
writeFile, | |
rename |
OlderNewer