Skip to content

Instantly share code, notes, and snippets.

View cbetancourt's full-sized avatar

Claude Betancourt cbetancourt

  • Philadelphia, PA
  • 05:28 (UTC -04:00)
View GitHub Profile
@cbetancourt
cbetancourt / settings.json
Created May 9, 2025 20:39
Cursor/VSCode Settings 20250509
{
"window.commandCenter": true,
"workbench.editor.enablePreview": false,
"files.trimTrailingWhitespace": true,
"workbench.iconTheme": "material-icon-theme",
"git.enableSmartCommit": true,
"git.confirmSync": false,
"workbench.preferredLightColorTheme": "GitHub Light",
"window.autoDetectColorScheme": true,
"window.systemColorTheme": "auto",
@cbetancourt
cbetancourt / dependabot.yaml
Last active May 9, 2025 20:48
NPM Dependabot Config / Minor and Patch Only
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
labels:
- "dependabot"
@cbetancourt
cbetancourt / .vimrc
Last active February 6, 2018 21:00 — forked from simonista/.vimrc
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on