Skip to content

Commit

Permalink
Added vscode global configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
KELiON committed Jun 27, 2017
1 parent ef0ba71 commit b1220f2
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 0 deletions.
3 changes: 3 additions & 0 deletions vscode/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
projects.json
projects_cache_git.json
projects_cache_vscode.json
16 changes: 16 additions & 0 deletions vscode/keybindings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+1", "command": "workbench.action.focusFirstEditorGroup" },
{ "key": "ctrl+2", "command": "workbench.action.focusSecondEditorGroup" },
{ "key": "ctrl+3", "command": "workbench.action.focusThirdEditorGroup" },
{ "key": "ctrl+0", "command": "workbench.action.focusSideBar" },
{ "key": "cmd+1", "command": "workbench.action.openEditorAtIndex1" },
{ "key": "cmd+2", "command": "workbench.action.openEditorAtIndex2" },
{ "key": "cmd+3", "command": "workbench.action.openEditorAtIndex3" },
{ "key": "cmd+4", "command": "workbench.action.openEditorAtIndex4" },
{ "key": "cmd+5", "command": "workbench.action.openEditorAtIndex5" },
{ "key": "cmd+6", "command": "workbench.action.openEditorAtIndex6" },
{ "key": "cmd+7", "command": "workbench.action.openEditorAtIndex7" },
{ "key": "cmd+8", "command": "workbench.action.openEditorAtIndex8" },
{ "key": "cmd+9", "command": "workbench.action.openEditorAtIndex9" }
]
30 changes: 30 additions & 0 deletions vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"workbench.colorTheme": "Atom One Dark",
"workbench.iconTheme": "vscode-icons",
"editor.fontLigatures": true,
"editor.fontFamily": "Fira Code",
"editor.fontSize": 17,
"editor.tabSize": 2,
"workbench.sideBar.location": "left",
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"window.zoomLevel": 0,
"window.openFilesInNewWindow": "off",
"window.reopenFolders": "all",
"window.newWindowDimensions": "inherit",
"files.autoSave": "onFocusChange",
"vim.useSystemClipboard": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.disableAnnoyingNeovimMessage": true,
"projectManager.vscode.baseFolders": [
"$home/projects"
],
"projectManager.git.baseFolders": [
"$home/projects"
]
}
1 change: 1 addition & 0 deletions vscode/vsicons.settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"version":"7.10.1","status":1,"welcomeShown":true}

0 comments on commit b1220f2

Please sign in to comment.