Skip to content

Instantly share code, notes, and snippets.

@danmrichards
danmrichards / config.fish
Created June 7, 2016 22:14
Fish shell config
### Aliases
# Open specified files in Sublime Text
# "s ." will open the current directory in Sublime
alias s='open -a "Sublime Text"'
# Open specified files in Atom
# "a ." will open the current directory in Sublime
alias a='atom .'
@danmrichards
danmrichards / init.vim
Last active June 6, 2016 22:32
Neovim config
" Make Vim more useful
set nocompatible
" Use the OS clipboard by default (on versions compiled with `+clipboard`)
" Set color scheme!¬
colorscheme Tomorrow-Night
set clipboard=unnamed
" Disable mode
set noshowmode
" Enhance command-line completion
set wildmenu