Skip to content

Instantly share code, notes, and snippets.

@chancesmith
chancesmith / st3_sync.md
Last active April 7, 2017 12:04 — forked from mindmergedesign/st3_sync
Sync Sublime Text 3 Packages and Settings with Dropbox

Sync ST3 Packages & Settings with Dropbox or Encore

Inital setup from main computer

Create the sync directory in Dropbox

  • $ mkdir ~/Dropbox/sublime-text-3

Move your ST3 "Packages" and "Installed Packages" to Dropbox

  • $ cd ~/Library/Application\ Support/Sublime\ Text\ 3
  • $ mv Packages/ ~/Dropbox/sublime-text-3
  • $ mv Installed\ Packages/ ~/Dropbox/sublime-text-3
@chancesmith
chancesmith / SelectField.tsx
Created February 28, 2020 11:48 — forked from hubgit/SelectField.tsx
Use react-select with Formik
import {FieldProps} from 'formik';
import React from 'react';
import Select, {OptionsType, ValueType} from 'react-select';
interface Option {
label: string;
value: string;
}
interface CustomSelectProps extends FieldProps {