Skip to content

Instantly share code, notes, and snippets.

@kukiron
Last active July 6, 2018 02:32
Show Gist options
  • Save kukiron/d2156ce2a289e9652d9dca6e70d7a2c5 to your computer and use it in GitHub Desktop.
Save kukiron/d2156ce2a289e9652d9dca6e70d7a2c5 to your computer and use it in GitHub Desktop.
VSCodeSettings for Angular Projects
{
"auto-rename-tag.activationOnLanguage": [
"html",
"xml",
"php",
"javascript",
"javascriptreact"
],
/** BEAUTIFY **/
"beautify.language": {
"css": [
"css",
"scss",
"styl"
],
"html": [
"htm",
"html",
"pug"
]
},
/** EDITOR **/
"editor.cursorStyle": "line",
"editor.cursorBlinking": "phase",
"editor.fontFamily": "Fira Code",
"editor.fontSize": 12,
"editor.fontWeight": "400",
"editor.lineHeight": 19,
"editor.letterSpacing": 0.25,
"editor.fontLigatures": true,
"editor.renderWhitespace": "none",
"editor.minimap.enabled": true,
"editor.minimap.showSlider": "always",
"editor.minimap.renderCharacters": false,
"editor.wordWrap": "on",
"editor.wrappingIndent": "indent",
"editor.tabSize": 2,
"editor.dragAndDrop": true,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.rulers": [
80
],
"editor.multiCursorModifier": "ctrlCmd",
/* EMMET */
"emmet.triggerExpansionOnTab": true,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
/* ESLint */
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
/* EXPLORER */
"explorer.confirmDragAndDrop": false,
/** FILES **/
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/node_modules": true,
"**/jspm_packages": true,
"**/bower_components": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
/* GITLENS */
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"gitlens.historyExplorer.enabled": true,
"gitlens.keymap": "chorded",
/* JEST */
"jest.autoEnable": false,
/* LIVE SERVER */
"liveServer.settings.donotVerifyTags": true,
/** PRETTIER **/
"prettier.eslintIntegration": true,
"prettier.semi": false,
"prettier.printWidth": 80,
/** TERMINAL **/
"terminal.integrated.fontFamily": "Operator Mono Lig Medium",
"terminal.integrated.fontSize": 13,
"terminal.integrated.lineHeight": 1.2,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.rendererType": "dom",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
/** Custom CSS/JS Configuration **/
"vscode_custom_css.imports": [
"file://C:\\Users\\HHH\\.vscodestyles.css"
],
/** VSCode Icons **/
"vsicons.associations.files": [{
"icon": "js",
"extensions": [
"js"
],
"format": "svg"
}],
/** WINDOW **/
"window.menuBarVisibility": "toggle",
/** WORKBENCH **/
"workbench.colorTheme": "One Dark+ (Sublime)",
"workbench.iconTheme": "vscode-icons",
// Theme Customization --->
"workbench.colorCustomizations": {
"activityBar.background": "#122231",
"activityBar.border": "#122231",
"activityBar.dropBackground": "#0d3a58",
"activityBar.foreground": "#fff",
"badge.background": "#007ACC",
"badge.foreground": "#fff",
"editor.background": "#0c1c24",
"editor.selectionBackground": "#074064",
"editorCursor.foreground": "#ccff00",
"editor.lineHighlightBackground": "#050d0f",
"editorGroupHeader.tabsBackground": "#193549",
"editorIndentGuide.background": "#383C44",
"input.background": "#201b1b",
"input.border": "#434343",
"input.foreground": "#EAEAEA",
"input.placeholderForeground": "#878787",
"sideBar.background": "#0e1720",
"sideBar.border": "#0C1C24",
"sideBar.foreground": "#aaa",
"sideBarSectionHeader.background": "#193549",
"sideBarSectionHeader.foreground": "#aaaaaa",
"sideBarTitle.foreground": "#aaaaaa",
"statusBar.background": "#15232d",
"statusBar.border": "#0d3a58",
"statusBar.debuggingBackground": "#15232d",
"statusBar.debuggingForeground": "#0d3a58",
"statusBar.foreground": "#aaa",
"statusBar.noFolderBackground": "#15232d",
"statusBar.noFolderForeground": "#aaa",
"statusBarItem.activeBackground": "#0088ff",
"statusBarItem.hoverBackground": "#0d3a58",
"statusBarItem.prominentBackground": "#15232d",
"statusBarItem.prominentHoverBackground": "#0d3a58",
"tab.activeBackground": "#122738",
"tab.activeForeground": "#fff",
"tab.border": "#15232D",
"tab.activeBorder": "#C6FF00",
"tab.inactiveBackground": "#193549",
"tab.inactiveForeground": "#aaa",
"tab.unfocusedActiveForeground": "#aaa",
"tab.unfocusedInactiveForeground": "#aaa",
"terminal.background": "#161616",
"list.activeSelectionForeground": "#C6FF00",
"list.inactiveSelectionForeground": "#C6FF00",
"scrollbarSlider.activeBackground": "#99d6ff50",
"textLink.foreground": "#C6FF00",
"progressBar.background": "#C6FF00",
"pickerGroup.foreground": "#C6FF00"
},
"typescript.updateImportsOnFileMove.enabled": "always",
"window.zoomLevel": 0,
/*
"materialTheme.cache.workbench.settings": {
"accent": "Acid Lime",
"accentPrevious": "Blue"
},
*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment