My VSCode ExtensionWelcome to My VSCode Extension! This extension adds exciting features to enhance your Visual Studio Code experience. Features
Installation
UsageOnce the extension is installed, you can start using its features:
ConfigurationYou can configure the extension by modifying your VSCode settings. Here's an example of how to configure the extension:
{ // editor "editor.fontSize": 20, "editor.fontFamily": "Fira Code, Operator Mono", "editor.fontLigatures": true, "editor.wordWrap": "on", "editor.tokenColorCustomizations": { "textMateRules": [ { "scope": "comment", "settings": { "fontStyle": "italic" } } ] }, // cursor "editor.cursorSmoothCaretAnimation": "on", "editor.cursorBlinking": "expand", // config related to code formatting "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "[javascript]": { "editor.formatOnSave": false, "editor.defaultFormatter": null }, "[javascriptreact]": { "editor.formatOnSave": false, "editor.defaultFormatter": null }, "editor.codeActionsOnSave": { "source.fixAll.eslint": true, "source.fixAll.tslint": true, "source.organizeImports": true }, "eslint.alwaysShowStatus": true, //terminal "terminal.integrated.fontSize": 16, "terminal.integrated.fontWeight": "normal", "terminal.integrated.fontFamily": "Fira Code, Operator Mono", "workbench.colorTheme": "Hridoy's Dark Theme", "workbench.iconTheme": "vscode-icons", // terminal customization "workbench.colorCustomizations": { "terminal.background": "#1D2021", "terminal.foreground": "#A89984", "terminalCursor.background": "#A89984", "terminalCursor.foreground": "#A89984", "terminal.ansiBlack": "#1D2021", "terminal.ansiBlue": "#0D6678", "terminal.ansiBrightBlack": "#665C54", "terminal.ansiBrightBlue": "#0D6678", "terminal.ansiBrightCyan": "#8BA59B", "terminal.ansiBrightGreen": "#95C085", "terminal.ansiBrightMagenta": "#8F4673", "terminal.ansiBrightRed": "#FB543F", "terminal.ansiBrightWhite": "#FDF4C1", "terminal.ansiBrightYellow": "#FAC03B", "terminal.ansiCyan": "#8BA59B", "terminal.ansiGreen": "#95C085", "terminal.ansiMagenta": "#8F4673", "terminal.ansiRed": "#FB543F", "terminal.ansiWhite": "#A89984", "terminal.ansiYellow": "#FAC03B" }, "files.autoSave": "afterDelay", "workbench.editor.enablePreview": false } Screenshots
No need for now FeedbackIf you encounter any issues or have suggestions for improvement, please don't hesitate to mail me open an issue. ContributingWe welcome contributions from the community. If you'd like to contribute to this project, please follow our contribution guidelines. LicenseThis extension is not licensed.... AcknowledgmentsWe would like to thank the open-source community and the contributors who have helped make this extension possible. |