Coder Social home page Coder Social logo

dotfiles's Introduction

dotfiles

Hey wes what settings do you use?

These are my config setting for various apps, editors and linters. I'd suggest not copying them directly but referencing what I have and what ones might make sense for you.

These are constantly changing as I work on different types of projects so I don't necessarily always have an answer to "y do u do ____ instead of ____"

Enjoy! ๐Ÿ˜˜

Explanations

Keeping up to date

This is for wes to remember what I did.

I created "hard links", so the content is available inside git.

ln ~/Library/ApplicationSupport/Code/User/settings.json settings.json
ln ~/Library/ApplicationSupport/Code/User/keybindings.json keybindings.json
ln ~/Videos/hot-tips/.vscode/settings.json ./hot-tip-vscode-settings.json

Then to get a list of extensions:

  1. Open up your extensions list. โŒ˜+โ‡ง+x
  2. type in @enabled
  3. Open VS Code dev toosls Help โ†’ Toggle Developer Tools
  4. Paste the code from get-extensions.js into the console
  5. It will be in your clipboard, so just paste into vs-code-extensions-i-use.md

dotfiles's People

Contributors

fahmidanabi avatar jfdelarosa avatar rouzbeh84 avatar vpicone avatar wesbos avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dotfiles's Issues

Import Cost

I think you use the Import Cost extension, or something else to show js sizes in VS Code. Thanks!

Request: VSCode CSS

Hi Wes! Would you be willing to share the VSCode CSS file that's referenced in your vscode settings? Specifically struggling to figure out the customizations around what gets italicized and what doesn't.

Thanks!

How do I get set-up with your ESLint globally?

I'm trying to set-up my .eslintrc globally to match your dotfiles, however, I'm running into an issue with VSCode where it says: Cannot find module 'eslint-config-prettier/react' Referenced from: /Users/matthewblode/.eslintrc. Thank you for your help and I'm loving the Sick Fits tutorial! #BigPoop

zshrc

I want to get the same autocomplete everything experience, can you please share you .zshrc as well? Thanks ๐ŸŽ‰

Error Color

Hello.

How to change my errors to look like yours ?

myError

wesError

Best regards, Max :).

Fake Name function always returns "Johnson" for last name

Typo in your "fake name" function -- Array.at() is same as Array.at(0) so last name is always Johnson...

CURRENT:

function makeName() {
  const first = ['James', 'Robert', 'John', 'Michael', 'David', 'William', 'Richard', 'Joseph', 'Thomas', 'Charles', 'Christopher', 'Daniel', 'Matthew', 'Anthony', 'Mark', 'Donald', 'Steven', 'Paul', 'Andrew', 'Joshua', 'Kenneth', 'Kevin', 'Brian', 'George', 'Timothy', 'Ronald', 'Edward', 'Jason'];

  const last = ['Johnson', 'Williams', 'Brown', 'Jones', 'Miller', 'Davis', 'Garcia', 'Rodriguez', 'Wilson', 'Martinez', 'Anderson', 'Taylor', 'Thomas', 'Hernandez', 'Moore', 'Martin', 'Jackson', 'Thompson',];
  return `${first.at(Math.random() * first.length)} ${last.at()}`;
}

FIXED:

function makeName() {
  const first = ['James', 'Robert', 'John', 'Michael', 'David', 'William', 'Richard', 'Joseph', 'Thomas', 'Charles', 'Christopher', 'Daniel', 'Matthew', 'Anthony', 'Mark', 'Donald', 'Steven', 'Paul', 'Andrew', 'Joshua', 'Kenneth', 'Kevin', 'Brian', 'George', 'Timothy', 'Ronald', 'Edward', 'Jason'];

  const last = ['Johnson', 'Williams', 'Brown', 'Jones', 'Miller', 'Davis', 'Garcia', 'Rodriguez', 'Wilson', 'Martinez', 'Anderson', 'Taylor', 'Thomas', 'Hernandez', 'Moore', 'Martin', 'Jackson', 'Thompson',];
  return `${first.at(Math.random() * first.length)} ${last.at(Math.random() * last.length)}`;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.