Skip to content

Instantly share code, notes, and snippets.

@alrocar
Created January 16, 2025 19:20
Show Gist options
  • Save alrocar/2087122ef325296d9c54e031a6eb2b15 to your computer and use it in GitHub Desktop.
Save alrocar/2087122ef325296d9c54e031a6eb2b15 to your computer and use it in GitHub Desktop.
settings.json

Install vibrancy, you can follow these instructions

Then use the settings.json and update to your local path:

"vscode_vibrancy.imports": [
    "/Users/alrocar/dev/vibrancy-cursor.css"
],

Since Cursor does not support the VSCode Marketplace, I downloaded the extension from here

{
"window.zoomLevel": 2,
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.fontWeight": "700",
"editor.cursorStyle": "underline",
"editor.cursorWidth": 5,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"workbench.statusBar.visible": false,
"editor.minimap.enabled": false,
"breadcrumbs.enabled": false,
"workbench.activityBar.location": "hidden",
"editor.guides.indentation": false,
"editor.scrollbar.verticalScrollbarSize": 0,
"editor.scrollbar.horizontalScrollbarSize": 2,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.horizontal": "hidden",
"editor.renderLineHighlight": "none",
"editor.glyphMargin": false,
"editor.lineNumbers": "off",
"editor.showFoldingControls": "never",
"editor.padding.bottom": 2,
"editor.padding.top": 2,
"window.title": " ",
"window.density.editorTabHeight": "compact",
"workbench.layoutControl.type": "menu",
"workbench.layoutControl.enabled": false,
"window.commandCenter": false,
"workbench.editor.editorActionsLocation": "hidden",
"workbench.editor.showTabs": "none",
"editor.scrollBeyondLastLine": false,
"editor.hideCursorInOverviewRuler": true,
"editor.stickyScroll.enabled": false,
"window.customTitleBarVisibility": "never",
"window.titleBarStyle": "custom",
"workbench.colorTheme": "Catppuccin Frappé",
"workbench.iconTheme": "catppuccin-frappe",
"workbench.tree.indent": 10,
"workbench.tree.renderIndentGuides": "none",
"explorer.decorations.colors": false,
"settings.cycle": [
{
"id": "lineNumbers",
"values": [
{
"editor.lineNumbers": "off"
},
{
"editor.lineNumbers": "on"
}
]
}
],
"extensions.ignoreRecommendations": true,
"workbench.sideBar.location": "right",
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.defaultLocation": "editor",
"terminal.integrated.gpuAcceleration": "on",
"terminal.integrated.fontWeight": "500",
"terminal.integrated.fontWeightBold": "700",
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.hideOnStartup": "always",
"terminal.integrated.cursorStyle": "underline",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.cursorStyleInactive": "outline",
"terminal.integrated.cursorWidth": 5,
"editor.fontFamily": "Menlo, 'VictorMono Nerd Font', Monaco, 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.wordWrap": "on",
"python.analysis.autoSearchPaths": true,
"python.analysis.useLibraryCodeForTypes": true,
"python.analysis.indexing": true,
"python.autoComplete.extraPaths": [
"/Users/alrocar/dev/analytics/.e/lib/python3.11/site-packages"
],
"python.analysis.extraPaths": [
"/Users/alrocar/dev/analytics/.e/lib/python3.11/site-packages"
],
"vscode_vibrancy.opacity": 0,
"workbench.colorCustomizations": {
"terminal.background": "#00000000"
},
"workbench.settings.applyToAllProfiles": [
"workbench.colorCustomizations"
],
"terminal.explorerKind": "external",
"terminal.integrated.tabs.enabled": false,
"editor.multiCursorLimit": 100000,
"vscode_vibrancy.enableAutoTheme": true,
"vscode_vibrancy.imports": [
"/Users/alrocar/dev/vibrancy-cursor.css"
],
"vscode_vibrancy.preferedDarkTheme": "Default Light",
"vscode_vibrancy.theme": "Default Light"
}
.monaco-workbench .part.sidebar > div > div > div > div {
background-color: rgba(37, 37, 38, 0.3) !important;
}
.monaco-workbench .part.sidebar > div > div > div > div > div:nth-child(2) {
background-color: rgba(37, 37, 38) !important;
}
.cursorHintLineWidgetBackground {
background-color: transparent !important;
}
#workbench\.panel\.aichat {
background: transparent !important;
}
#workbench\.panel\.aichat * {
background: inherit !important;
}
#workbench\.parts\.sidebar {
background: transparent !important;
}
#workbench\.parts\.sidebar * {
background: inherit !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment