Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- // Configurações para uso do Visual Studio Code
- // Preview, abre o script em uma nova aba
- "workbench.editor.enablePreview": false,
- "workbench.editor.enablePreviewFromQuickOpen": false,
- // Tira linha branca do final
- "files.trimFinalNewlines": true,
- // Cursor
- "editor.cursorStyle": "line",
- "editor.cursorBlinking": "smooth",
- // Organiza arquivos pelo tipo
- "explorer.sortOrder": "type",
- // Ocultar a barra lateral
- "autoHide.autoHideSideBar": true,
- "autoHide.autoHidePanel": false,
- "autoHide.sideBarDelay": false,
- "autoHide.panelDelay": true,
- "autoHide.hideOnOpen": false,
- // Sinaliza tab não salva
- "workbench.editor.highlightModifiedTabs": true,
- // Terminal
- "terminal.integrated.fontSize": 14,
- "terminal.integrated.fontFamily": "Hack, Hack Nerd Font Mono, Fira Code, Fira Sans",
- "terminal.integrated.lineHeight": 1,
- // Editor font e zoom do editor
- "editor.fontSize": 18,
- "editor.fontLigatures": true,
- "editor.fontFamily": "Hack, Hack Nerd Font Mono, Fira Code, Fira Sans",
- "window.zoomLevel": -1,
- // Mini mapa
- "editor.minimap.enabled": false,
- // Salvar aquivo
- "files.autoSave": "afterDelay",
- // Notificações na inicialização
- "kite.showWelcomeNotificationOnStartup": false,
- "explorer.confirmDragAndDrop": false,
- // Quebra de linhas
- "editor.wordWrap": "on",
- // Fechar parênteses automaticamente
- "editor.autoClosingBrackets": "always",
- // O diff com ou sem espaços brancos
- "diffEditor.ignoreTrimWhitespace": false,
- // Ignorar recomendações de extenções
- "extensions.ignoreRecommendations": true,
- // Confimação antes de deletar
- "explorer.confirmDelete": true,
- "[html]": {
- // Padrão para formatar usar o Beautify
- "editor.defaultFormatter": "HookyQR.beautify"
- },
- "editor.tabSize": 2,
- "html.format.indentInnerHtml": true,
- // Tema e ícones
- "workbench.colorTheme": "Dracula",
- "material-icon-theme.folders.color": "#42a5f5",
- "workbench.iconTheme": "material-icon-theme",
- //Auto completa o código
- "tabnine.experimentalAutoImports": true,
- // Fechar tag automaticamente
- "auto-close-tag.enableAutoCloseTag": true,
- // Formatar o HTML
- "html.format.enable": true,
- // Mostra o caminho até o arquivo em uso
- "breadcrumbs.enabled": true,
- // Verificar atualização dos plugins automaticamente
- "extensions.autoCheckUpdates": true,
- // Dicas do editor
- "editor.parameterHints.enabled": false,
- // Configurações para uso do Django Template
- // Associação do Django com HTML
- "files.associations": {
- "**/*.html": "html",
- "**/templates/*/*.html": "django-html",
- "**/templates/*": "django-txt",
- "**/requirements{/**,*}.{txt,in}": "pip-requirements"
- },
- "emmet.includeLanguages": {
- "django-html": "html",
- "django-txt": "html"
- },
- // Formatar com Beautify
- "beautify.language": {
- "html": [
- "htm",
- "html",
- "django-html",
- "django-txt"
- ]
- },
- // ----
- // Configurações do Todo Tree
- "todo-tree.highlights.backgroundColourScheme": [
- "red",
- "orange",
- "yellow",
- "green",
- "blue",
- "indigo",
- "lime",
- "navy",
- "olive",
- "violet",
- "salmon",
- "turquoise",
- "chocolate",
- "plum",
- "cyan"
- ],
- "todo-tree.general.tags": [
- "TODO",
- "FIXME",
- "COMPLETE",
- "BUG",
- "HACK",
- "ERROR",
- "TEST",
- "NOTE",
- "function"
- ],
- "todo-tree.highlights.foregroundColourScheme": [
- "white",
- "black",
- "red",
- "green",
- "palegreen",
- "purple"
- ],
- // Configurações do Todo Tree
- // Configuração padrão para todas as tags
- // "todo-tree.highlights.defaultHighlight": {
- // "icon": "alert",
- // "type": "text",
- // "foreground": "red",
- // "background": "white",
- // "opacity": 50,
- // "iconColour": "blue"
- // },
- // Configuração de cada tag do Todo Tree
- "todo-tree.highlights.customHighlight": {
- "TODO": {
- "icon": "alert",
- "type": "text",
- "foreground": "red",
- // "background": "white",
- "opacity": 50,
- "iconColour": "red"
- },
- "FIXME": {
- "icon": "tool",
- "type": "text",
- "foreground": "orange",
- // "background": "white",
- "opacity": 50,
- "iconColour": "orange"
- },
- "BUG": {
- "icon": "bug",
- "type": "text",
- "foreground": "lime",
- // "background": "white",
- "opacity": 50,
- "iconColour": "lime"
- },
- "NOTE": {
- "icon": "pencil",
- "type": "text",
- "foreground": "violet",
- // "background": "white",
- "opacity": 50,
- "iconColour": "violet"
- },
- "HACK": {
- "icon": "file-code",
- "type": "text",
- "foreground": "red",
- // "background": "white",
- "opacity": 50,
- "iconColour": "blue"
- },
- "TEST": {
- "icon": "beaker",
- "type": "text",
- "foreground": "turquoise",
- // "background": "white",
- "opacity": 50,
- "iconColour": "turquoise"
- },
- "ERROR": {
- "icon": "x-circle-fill",
- "type": "text",
- "foreground": "plum",
- // "background": "white",
- "opacity": 50,
- "iconColour": "plum"
- },
- "function": {
- "icon": "code",
- "type": "text",
- "foreground": "red",
- // "background": "white",
- "opacity": 50,
- "iconColour": "red"
- },
- "COMPLETE": {
- "icon": "star-fill",
- "type": "text",
- "foreground": "red",
- // "background": "white",
- "opacity": 50,
- "iconColour": "blue"
- }
- }
- }
RAW Paste Data