Marta Config
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
// Callum Silcock's config for Marta | |
{ | |
"environment": { | |
"terminal": "iTerm", | |
"textEditor": "Visual Studio Code" | |
}, | |
"behavior": { | |
"theme": "Kon", | |
"controlStyle": "fromTheme", | |
"sheetDialogs": false, | |
"forceOverlayScrollBars": true, | |
// Default date format (here is the specification http://apple.co/2CM6VFG) | |
"dateFormat": "%x %X", | |
"menu": { | |
// True if the first item should be automatically selected when a popup menu opens | |
"preselectFirstItem": false | |
}, | |
"actions": { | |
"core.trash.confirm": false, | |
"core.delete.confirm": true, | |
"core.favorites.showPinnedPlaces": true, | |
"core.copy.askTargetPath": true, | |
}, | |
"volumeSpace": { | |
"show": "never", | |
} | |
}, | |
"fonts": { | |
// File list font | |
"files": [ | |
"Fira Code Retina", | |
15 | |
], | |
// Breadcrumbs font | |
"breadcrumbs": ["Fira Code Retina", 15], | |
// Table header font | |
"tableHeader": ["Fira Code Retina", 14], | |
// Status bar font | |
"statusBar": ["Fira Code Retina", 14], | |
// Action bar button font | |
"actionBar": ["Fira Code Retina", 10], | |
// Tabs font | |
"tabs": ["Fira Code Retina", 14], | |
// Ephemeral (virtual) tabs font | |
"ephemeralTabs": ["Helvetica Neue Bold Italic", 12] | |
}, | |
"keyBindings": { | |
"core.activate.next.tab": ["Cmd+Tab"], | |
"core.activate.previous.tab": ["Cmd+Shift+Tab"], | |
}, | |
"setup": { | |
// Pinned places (shown above the favorite items). | |
"pinnedPlaces": [ | |
{"path": "user.dev"}, | |
{"path": "/Users/callumsilcock/hole"}, | |
{"path": "/Users/callumsilcock/Library/Mobile Documents/com~apple~CloudDocs", "name": "iCloud"}, | |
{"path": "/Users/callumsilcock/media/tv", "name": "TV Shows"}, | |
{"path": "/Users/callumsilcock/media/movies", "name": "Movies"}, | |
{"path": "user.home"}, | |
{"path": "system.applications"} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment