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
| { | |
| "Use Non-ASCII Font" : false, | |
| "Tags" : [ | |
| ], | |
| "Ansi 12 Color" : { | |
| "Red Component" : 0.40903013944625854, | |
| "Color Space" : "sRGB", | |
| "Blue Component" : 1, | |
| "Alpha Component" : 1, |
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 runtimepath^=~/.vim runtimepath+=~/.vim/after | |
| let &packpath=&runtimepath | |
| source ~/.vimrc |
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
| // Extensions: coc-prettier coc-eslint coc-tsserver coc-json coc-html coc-css | |
| { | |
| "suggest.noselect": false, | |
| "eslint.autoFixOnSave": true, | |
| "eslint.filetypes": ["javascript", "javascriptreact", "typescript", "typescriptreact"], | |
| "coc.preferences.formatOnSaveFiletypes": ["markdown", "mdx", "javascript", "javascriptreact", "typescript", "typescriptreact"], | |
| "coc.preferences.jumpCommand": "vsplit" | |
| } |
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
| " Basics | |
| set nocompatible | |
| set title | |
| set number | |
| set scrolloff=2 | |
| set backspace=indent,eol,start | |
| set nowrap | |
| set noerrorbells | |
| set belloff=all | |
| set hlsearch |
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
| # Autohide dock | |
| defaults write com.apple.dock autohide -bool true | |
| # Dock icon sizes | |
| defaults write com.apple.dock tilesize -int 64 | |
| # Disable dock resize | |
| defaults write com.apple.Dock size-immutable -bool yes | |
| # Remove default apps from dock |
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
| Visual Studio Code | |
| Hyper | |
| Google Chrome | |
| Mozilla Firefox | |
| Zoom | |
| GluePrint | |
| Postman | |
| Slack | |
| Transmit |
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
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 17, | |
| // font family with optional fallbacks | |
| fontFamily: '"Cascadia Code PL", monospace', | |
| // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
| cursorColor: "rgba(248,28,229,0.75)", |
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
| Terminal: fish | |
| App: Hyper https://hyper.is | |
| Package management: Oh My Fish! https://github.com/oh-my-fish/oh-my-fish | |
| Theme: Agnoster https://github.com/oh-my-fish/theme-agnoster | |
| Font: Powerline version of font https://github.com/powerline/fonts https://github.com/ryanoasis/nerd-fonts#font-patcher |
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
| /* in the Custom Fields tab, click "Edit Custom Fields" and paste the below in. Then click save. */ | |
| { | |
| "alertDuration": { | |
| "label": "Alert Duration", | |
| "type": "slider", | |
| "name": "", | |
| "value": 7, | |
| "max": 100, | |
| "min": 1, | |
| "steps": 1 |
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
| # Extensions | |
| # ---------- | |
| # ue.alphabetical-sorter | |
| # dbaeumer.vscode-eslint | |
| # eamodio.gitlens | |
| # esbenp.prettier-vscode | |
| # prisma.vscode-graphql | |
| { | |
| "breadcrumbs.enabled": false, |