Created
April 30, 2018 07:34
-
-
Save marcusramberg/6487e92f04ba0959b3fd02c62ed65f7e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.fontSize": 13, | |
"editor.tabSize": 2, | |
"editor.minimap.enabled": false, | |
"editor.rulers": [80], | |
"editor.fontFamily": "FuraCode Nerd Font Mono", | |
"editor.fontLigatures": true, | |
"editor.renderIndentGuides": false, | |
"editor.renderWhitespace": "boundary", | |
// comment | |
"editor.tokenColorCustomizations": { | |
"[Nord]": { | |
"comments": "#6d7a96", | |
"textMateRules": [ | |
{ | |
"scope": "punctuation.definition.variable", | |
"settings": { | |
"foreground": "#D8DEE9", | |
} | |
} | |
], | |
}, | |
}, | |
"files.exclude": { | |
"**/blib/": true, | |
"pm_to_blib": true, | |
"Makefile.old": true, | |
"MYMETA.*": true, | |
"**/local": true, | |
"**/assets/cache": true | |
}, | |
"git.autorefresh": true, | |
"git.confirmSync": false, | |
"search.exclude": { | |
"**/blib/": true, | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/local": true, | |
"**/assets/cache": true | |
}, | |
"search.useIgnoreFiles": true, | |
"terminal.integrated.fontFamily": "FuraCode Nerd Font Mono", | |
"workbench.startupEditor": "none", | |
"vim.leader": "<space>", | |
"workbench.editor.enablePreviewFromQuickOpen": false, | |
"vim.neovimPath": "/usr/local/bin/nvim", | |
"vim.enableNeovim": true, | |
"vim.easymotion": true, | |
"vim.statusBarColorControl": true, | |
"vim.useCtrlKeys": true, | |
"vim.useSystemClipboard": true, | |
"vim.cmdLineInitialColon": true, | |
"vim.substituteGlobalFlag": true, | |
"perltidy-more.profile": ".../.perltidyrc", | |
"git.path": "/usr/local/bin/hub", | |
"vim.otherModesKeyBindingsNonRecursive": [ | |
{ | |
"before": ["leader", "p"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "perltidy-more.tidy", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": ["leader", "n"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "editor.action.marker.next", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": ["leader", "a"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.findInFiles", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": [":"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.showCommands", | |
"args": [] | |
} | |
] | |
} | |
], | |
"extensions.ignoreRecommendations": false, | |
"git.enableSmartCommit": true, | |
"extensions.autoUpdate": true, | |
"files.autoSave": "afterDelay", | |
"rust.mode": "rls", | |
"rust.cargoHomePath": "$HOME/.cargo", | |
"git.autofetch": true, | |
"perlSyntax.includePaths": [ | |
"lib", | |
], | |
"files.associations": { | |
"*.pm": "perl+mojolicious" | |
}, | |
"gitlens.advanced.messages": { | |
"suppressShowKeyBindingsNotice": true | |
}, | |
"workbench.colorTheme": "Nord", | |
"workbench.colorCustomizations": { | |
"[Nord]": { | |
"list.activeSelectionBackground": "#434c5e", | |
"list.activeSelectionForeground": "#d8dee9", | |
"scrollbar.shadow": "#0000", | |
"widget.shadow": "#0000" | |
} | |
}, | |
"workbench.iconTheme": "vs-minimal", | |
"[perl]": {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment