This file contains 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
[user] | |
name = Luke Morales | |
email = [email protected] | |
[core] | |
editor = code --wait | |
[alias] | |
ci = commit | |
co = checkout | |
cm = checkout master | |
cb = checkout -b |
This file contains 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
# Fig pre block. Keep at the top of this file. | |
. "$HOME/.fig/shell/zshrc.pre.zsh" | |
eval $(thefuck --alias) | |
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/lukemorales/.oh-my-zsh" | |
export PATH="$PATH:/usr/local/bin" |
This file contains 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
const createArrayOfChars = (length: number, initial: number) => { | |
return Array.from({ length }, (_, index) => String.fromCharCode(index + initial)); | |
} | |
const numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; | |
const symbols = [ ...createArrayOfChars(14, 33), ...createArrayOfChars(6, 58), ...createArrayOfChars(4, 123)]; | |
const lowerCaseLetters = createArrayOfChars(26, 97); | |
const upperCaseLetters = lowerCaseLetters.map((letter) => letter.toUpperCase()); | |
type CharType = 'numbers' | 'symbols' | 'upperCase' | 'lowerCase'; |
This file contains 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
{ | |
/** | |
* Better Defaults | |
**/ | |
"editor.copyWithSyntaxHighlighting": false, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"editor.emptySelectionClipboard": false, | |
"workbench.editor.enablePreview": false, | |
"workbench.settings.enableNaturalLanguageSearch": false, | |
"window.newWindowDimensions": "inherit", |
This file contains 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
[Appearance] | |
ColorScheme=OmniTheme | |
Font=Fira Code Medium,11,-1,5,57,0,0,0,0,0 | |
[General] | |
Command=/bin/zsh | |
Name=OmniKonsole | |
Parent=FALLBACK/ | |
TerminalMargin=8 |
This file contains 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
[Background] | |
Color=25,22,34 | |
[BackgroundFaint] | |
Color=77,77,77 | |
[BackgroundIntense] | |
Color=25,22,34 | |
[Color0] |
This file contains 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
// This file was initially generated by Windows Terminal 1.0.1401.0 | |
// It should still be usable in newer versions, but newer versions might have additional | |
// settings, help text, or changes that you will not see unless you clear this file | |
// and let us generate a new one for you. | |
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", |
This file contains 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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |