-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be2bf7e
commit 6bb295e
Showing
127 changed files
with
8,085 additions
and
8,304 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ | ||
"name": "sample-nodejs", | ||
"version": "0.0.1", | ||
"description": "Sample node program", | ||
"bin": { | ||
"sample-node": "build/index.js" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"start": "npm run build && node build/index.js" | ||
}, | ||
"author": "NotAShelf", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/node": "^20.1.2", | ||
"typescript": "^5.0.4", | ||
"typescript-language-server": "^3.3.2" | ||
} | ||
"name": "sample-nodejs", | ||
"version": "0.0.1", | ||
"description": "Sample node program", | ||
"bin": { | ||
"sample-node": "build/index.js" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"start": "npm run build && node build/index.js" | ||
}, | ||
"author": "NotAShelf", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/node": "^20.1.2", | ||
"typescript": "^5.0.4", | ||
"typescript-language-server": "^3.3.2" | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2016", | ||
"lib": ["es6"], | ||
"module": "commonjs", | ||
"rootDir": "src", | ||
"resolveJsonModule": true, | ||
"allowJs": true, | ||
"outDir": "build", | ||
"esModuleInterop": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"noImplicitAny": true, | ||
"skipLibCheck": true | ||
} | ||
"compilerOptions": { | ||
"target": "es2016", | ||
"lib": ["es6"], | ||
"module": "commonjs", | ||
"rootDir": "src", | ||
"resolveJsonModule": true, | ||
"allowJs": true, | ||
"outDir": "build", | ||
"esModuleInterop": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"noImplicitAny": true, | ||
"skipLibCheck": true | ||
} | ||
} |
28 changes: 14 additions & 14 deletions
28
home/isabel/programs/configs/editors/vscode/keybindings.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
[ | ||
{ | ||
"key": "ctrl+alt+up", | ||
"command": "-editor.action.copyLinesUpAction", | ||
"when": "editorTextFocus" | ||
}, | ||
{ | ||
"key": "ctrl+alt+down", | ||
"command": "-editor.action.copyLinesDownAction", | ||
"when": "editorTextFocus" | ||
}, | ||
{ | ||
"key": "ctrl+m", | ||
"command": "-editor.action.toggleTabFocusMode" | ||
} | ||
{ | ||
"key": "ctrl+alt+up", | ||
"command": "-editor.action.copyLinesUpAction", | ||
"when": "editorTextFocus" | ||
}, | ||
{ | ||
"key": "ctrl+alt+down", | ||
"command": "-editor.action.copyLinesDownAction", | ||
"when": "editorTextFocus" | ||
}, | ||
{ | ||
"key": "ctrl+m", | ||
"command": "-editor.action.toggleTabFocusMode" | ||
} | ||
] |
96 changes: 48 additions & 48 deletions
96
home/isabel/programs/configs/editors/vscode/settings.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,50 @@ | ||
{ | ||
"security.workspace.trust.untrustedFiles": "open", | ||
"editor.suggestSelection": "first", | ||
"editor.formatOnPaste": true, | ||
"explorer.confirmDragAndDrop": false, | ||
"files.autoSave": "onWindowChange", | ||
"editor.multiCursorModifier": "ctrlCmd", | ||
"git.autofetch": true, | ||
"git.confirmSync": false, | ||
"git.ignoreRebaseWarning": true, | ||
"git.enableSmartCommit": true, | ||
"editor.guides.bracketPairs": true, | ||
"editor.guides.bracketPairsHorizontal": true, | ||
"emmet.triggerExpansionOnTab": true, | ||
"editor.inlineSuggest.enabled": true, | ||
"github.copilot.enable": { | ||
"*": true | ||
}, | ||
"editor.accessibilitySupport": "off", | ||
"editor.fontFamily": "JetBrainsMono Nerd Font Mono", | ||
"terminal.integrated.fontSize": 16, | ||
"editor.linkedEditing": true, | ||
"workbench.startupEditor": "none", | ||
"markdown-preview-enhanced.liveUpdate": true, | ||
"editor.formatOnSave": true, | ||
"explorer.confirmDelete": false, | ||
"workbench.settings.applyToAllProfiles": [], | ||
"workbench.iconTheme": "catppuccin-mocha", | ||
"window.titleBarStyle": "custom", | ||
"nix.enableLanguageServer": true, | ||
"nix.serverPath": "nil", | ||
// using flakes with `formatter = pkgs.alejandra;` | ||
"nix.formatterPath": ["nix", "fmt", "--", "-"], | ||
"nix.serverSettings": { | ||
// settings for 'nil' LSP | ||
"nil": { | ||
"formatting": { | ||
"command": ["alejandra"] | ||
} | ||
} | ||
}, | ||
"workbench.editor.empty.hint": "hidden", | ||
"arduino.useArduinoCli": true, | ||
"arduino.enableUSBDetection": true, | ||
"[css]": { | ||
"editor.defaultFormatter": "stylelint.vscode-stylelint" | ||
}, | ||
"workbench.colorTheme": "Catppuccin Mocha", | ||
"catppuccin.accentColor": "sapphire" | ||
"security.workspace.trust.untrustedFiles": "open", | ||
"editor.suggestSelection": "first", | ||
"editor.formatOnPaste": true, | ||
"explorer.confirmDragAndDrop": false, | ||
"files.autoSave": "onWindowChange", | ||
"editor.multiCursorModifier": "ctrlCmd", | ||
"git.autofetch": true, | ||
"git.confirmSync": false, | ||
"git.ignoreRebaseWarning": true, | ||
"git.enableSmartCommit": true, | ||
"editor.guides.bracketPairs": true, | ||
"editor.guides.bracketPairsHorizontal": true, | ||
"emmet.triggerExpansionOnTab": true, | ||
"editor.inlineSuggest.enabled": true, | ||
"github.copilot.enable": { | ||
"*": true | ||
}, | ||
"editor.accessibilitySupport": "off", | ||
"editor.fontFamily": "JetBrainsMono Nerd Font Mono", | ||
"terminal.integrated.fontSize": 16, | ||
"editor.linkedEditing": true, | ||
"workbench.startupEditor": "none", | ||
"markdown-preview-enhanced.liveUpdate": true, | ||
"editor.formatOnSave": true, | ||
"explorer.confirmDelete": false, | ||
"workbench.settings.applyToAllProfiles": [], | ||
"workbench.iconTheme": "catppuccin-mocha", | ||
"window.titleBarStyle": "custom", | ||
"nix.enableLanguageServer": true, | ||
"nix.serverPath": "nil", | ||
// using flakes with `formatter = pkgs.alejandra;` | ||
"nix.formatterPath": ["nix", "fmt", "--", "-"], | ||
"nix.serverSettings": { | ||
// settings for 'nil' LSP | ||
"nil": { | ||
"formatting": { | ||
"command": ["alejandra"] | ||
} | ||
} | ||
}, | ||
"workbench.editor.empty.hint": "hidden", | ||
"arduino.useArduinoCli": true, | ||
"arduino.enableUSBDetection": true, | ||
"[css]": { | ||
"editor.defaultFormatter": "stylelint.vscode-stylelint" | ||
}, | ||
"workbench.colorTheme": "Catppuccin Mocha", | ||
"catppuccin.accentColor": "sapphire" | ||
} |
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
Oops, something went wrong.