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
Show hidden characters
{ | |
"font_face": "SF Mono", | |
"font_size": 14, | |
"rulers": [80, 120], | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": "not_on_caret", | |
"ensure_newline_at_eof_on_save": true, | |
"save_on_focus_lost": true, | |
"shift_tab_unindent": true, |
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
export LANG=en_US.UTF-8 | |
# Bash Completion | |
if [[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]]; then | |
source "/usr/local/etc/profile.d/bash_completion.sh" | |
fi | |
# Git Prompt | |
GIT_PS1_SHOWDIRTYSTATE="true" | |
GIT_PS1_SHOWSTASHSTATE="true" |
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
;; Do not show the startup screen | |
(setq inhibit-startup-screen t) | |
(setq ls-lisp-use-insert-directory-program nil) | |
(require 'ls-lisp) | |
;; Move Custom settings to their own location | |
(setq custom-file "~/.emacs.d/custom.el") | |
(load custom-file :noerror) |
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
" Load Vim defaults | |
unlet! skip_defaults_vim | |
source $VIMRUNTIME/defaults.vim | |
" Indent with 2 spaces | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
" Set line related settings |
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
@font-face { | |
font-family: "SF Mono"; | |
font-weight: 300; | |
font-style: normal; | |
src: url("file:///Applications/Utilities/Terminal.app/Contents/Resources/Fonts/SFMono-Light.otf"); | |
} | |
@font-face { | |
font-family: "SF Mono"; | |
font-weight: 300; |
NewerOlder