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
$spaces: ( | |
2: 0.125rem, | |
4: 0.25rem, | |
8: 0.5rem, | |
12: 0.75rem, | |
16: 1rem, | |
20: 1.25rem, | |
24: 1.5rem, | |
32: 2rem, | |
40: 2.5rem, |
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 shell=/bin/bash | |
set incsearch | |
" default tab size | |
set tabstop=2 | |
set shiftwidth=2 | |
set updatetime=100 | |
set directory^=$HOME/vimswap// | |
" Specify a directory for plugins |
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
# The prompt | |
PROMPT=' $(_current_path)$(git_prompt_info) $(_arrow) ' | |
# The right-hand prompt | |
RPROMPT='$(_prompt_nvm)$(git_prompt_status)' | |
function _current_path() { | |
echo "%{$fg[magenta]%}%c%{$reset_color%}" | |
} |
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
{ | |
"window.zoomLevel": 0, | |
"editor.fontFamily": "Operator Mono, Monaco, 'Courier New', monospace", | |
"editor.fontWeight": "400", | |
"editor.fontSize": 12, | |
"editor.tabSize": 4, | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"workbench.colorTheme": "One Monokai", | |
"files.insertFinalNewline": true, | |
"search.exclude": { |