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
| " ----------------------------------------------------------------------------- | |
| " GENERAL SETTINGS FOR EVERYONE | |
| " ---------------------------------------------------------------------------- | |
| filetype plugin indent on | |
| set nocompatible | |
| set autoindent | |
| set nomodeline " disable modeline vulnerability | |
| " text encoding |
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
| source /usr/local/opt/nvm/nvm.sh | |
| fpath+=$HOME/.zsh/pure | |
| autoload -U promptinit; promptinit | |
| # optionally define some options | |
| PURE_CMD_MAX_EXEC_TIME=10 | |
| # change the path color | |
| zstyle :prompt:pure:path color white | |
| # change the color for both `prompt:success` and `prompt:error` |
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
| { | |
| "editor.tabSize": 4, | |
| "[markdown]": { | |
| "editor.tabSize": 2, | |
| "editor.insertSpaces": true, | |
| "editor.detectIndentation": false, | |
| }, | |
| "[vue]": {}, | |
| "[php]": { | |
| "editor.tabSize": 4, |