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 nocompatible | |
filetype off | |
set packpath^=~/.vim | |
set runtimepath^=~/.vim | |
execute pathogen#infect() | |
set encoding=utf-8 | |
set fileformats=unix |
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
########################################## | |
# Common Settings | |
########################################## | |
# This file is the top-most EditorConfig file | |
root = true | |
# All Files # | |
[*] | |
indent_style = space |
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 = { | |
arrowParens: "always", | |
bracketSameLine: true, | |
bracketSpacing: false, | |
endOfLine: "lf", | |
htmlWhitespaceSensitivity: "css", | |
jsxSingleQuote: true, | |
overrides: [ | |
{ | |
files: [ |
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
--- | |
Language: Cpp | |
# BasedOnStyle: LLVM | |
AccessModifierOffset: -4 | |
AlignAfterOpenBracket: Align | |
AlignArrayOfStructures: None | |
AlignConsecutiveMacros: None | |
AlignConsecutiveAssignments: None | |
AlignConsecutiveBitFields: None | |
AlignConsecutiveDeclarations: None |
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
{ | |
"version": 1, | |
"mods": [ | |
{ | |
"label": { | |
"distribution_platform": 1, | |
"id": "2493100777", | |
"title": "Pip Plant Overlay", | |
"version": 1645431313 | |
}, |
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
unstable_features = true | |
edition = "2021" | |
newline_style = "Unix" | |
error_on_line_overflow = false | |
error_on_unformatted = false | |
brace_style = "SameLineWhere" | |
control_brace_style = "AlwaysSameLine" | |
max_width = 80 | |
comment_width = 80 | |
format_code_in_doc_comments = true |
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
git remote prune origin && git branch --merged | sed -rne '/(^\*|main$)/d;p' | xargs -n1 git branch -d |
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
#-- Project Settings | |
PROJECT_NAME := # TODO: Fill this in | |
PROJECT_DESCRIPTION := # TODO: Fill this in | |
PROJECT_VERSION := # TODO: Fill this in | |
SOURCE_DIR := ./src/ | |
TESTS_DIR := ./tests/ | |
BUILD_DIR := ./build/ | |
#-- Target Configuration | |
EXE_NAME := # TODO: Fill this in |
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
{ | |
"$schema": "https://raw.githubusercontent.com/DanielGavin/ols/master/misc/odinfmt.schema.json", | |
"brace_style": "_1TBS", | |
"character_width": 80, | |
"convert_do": false, | |
"exp_multiline_composite_literals": false, | |
"indent_cases": false, | |
"inline_single_stmt_case": false, | |
"newline_limit": 1, | |
"newline_style": "LF", |
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
{ | |
"bench": { | |
"include": ["./bench/*.ts", "./bench/**/*.ts"] | |
}, | |
"compilerOptions": { | |
"allowUnreachableCode": false, | |
"allowUnusedLabels": false, | |
"exactOptionalPropertyTypes": true, | |
"noErrorTruncation": true, | |
"noFallthroughCasesInSwitch": true, |
OlderNewer