Skip to content

Commit a2cd0f8

Browse files
committed
Update version to 2.0.5, enhance editor settings, and update documentation with recommended font families.
1 parent 86c0f81 commit a2cd0f8

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented here.
44

5+
## [2.0.5] - 2025-04-20
6+
### ✨ Update Patch
7+
- 🎨 **Update editor** Font size, Line height, Cursor style and blinking.
8+
- 🎭 **Update Font Family** Add default font family (IBM Plex Mono) Inspired by TailwindCSS
9+
- 🖥 **Optimized UI**
10+
- 📝 **Update Docs** add VS Code recommended font family.
11+
512
## [2.0.4] - 2025-04-11
613
### ✨ Update Patch
714
- 🎨 **Enhance color settings**. activityBar, quickInput, editorSuggestWidget, editorHoverWidget.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ Whether you're a beginner or an experienced developer, this setup will make your
99
2. Click on the "Install" button.
1010
3. Check standart keyboard shorcuts for [MacOS](https://code.visualstudio.com/shortcuts/keyboard-shortcuts-macos.pdf) and [Windows](https://code.visualstudio.com/shortcuts/keyboard-shortcuts-macos.pdf)
1111

12+
**Checkout recommended font family**
13+
- [IBM Plex Mono](https://fonts.google.com/specimen/IBM+Plex+Mono) Default
14+
- [Menlo](https://font.download/font/menlo)
15+
- [Monaco](https://font.download/font/monaco)
16+
- [Geist Mono](https://fonts.google.com/specimen/Geist+Mono)
17+
1218
## Override this theme
1319

1420
To override this (or any other) theme in your personal config file, please follow the guide in the [color theme](https://code.visualstudio.com/api/extension-guides/color-theme) documentation. This is handy for small tweaks to the theme without having to fork and maintain your own theme.

package.json

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "git",
77
"url": "https://github.com/ekovegeance/awesomecode"
88
},
9-
"version": "2.0.4",
9+
"version": "2.0.5",
1010
"publisher": "ekovegeance",
1111
"sponsor": {
1212
"url": "https://github.com/sponsors/ekovegeance"
@@ -61,7 +61,6 @@
6161
"workbench.iconTheme": "awesomecode-icon-theme",
6262
"workbench.editor.editorActionsLocation": "hidden",
6363
"workbench.preferredLightColorTheme": "awesomecode-theme",
64-
6564
"window.zoomLevel": 0,
6665
"window.nativeTabs": false,
6766
"window.commandCenter": false,
@@ -70,29 +69,31 @@
7069

7170
"breadcrumbs.enabled": true,
7271
"breadcrumbs.filePath": "on",
73-
"breadcrumbs.symbolPath": "off",
7472

75-
"editor.fontSize": 12,
76-
"editor.lineHeight": 28,
73+
"editor.fontSize": 13,
74+
"editor.lineHeight": 38,
7775
"editor.lineNumbers": "off",
76+
"breadcrumbs.symbolPath": "off",
7877
"editor.minimap.size": "fit",
7978
"editor.minimap.enabled": false,
8079
"editor.detectIndentation": true,
80+
"editor.cursorStyle": "line-thin",
8181
"editor.renderWhitespace": "none",
82-
"editor.cursorBlinking": "smooth",
82+
"editor.cursorBlinking": "expand",
8383
"editor.guides.indentation": false,
8484
"editor.inlineSuggest.enabled": true,
8585
"editor.scrollbar.vertical": "hidden",
8686
"editor.suggest.showStatusBar": false,
8787
"editor.minimap.showSlider": "always",
8888
"editor.autoClosingBrackets": "always",
8989
"editor.renderControlCharacters": false,
90+
"editor.cursorSmoothCaretAnimation": "on",
9091
"editor.minimap.renderCharacters": false,
9192
"editor.scrollbar.verticalScrollbarSize": 1,
9293
"editor.semanticTokenColorCustomizations": {},
9394
"editor.bracketPairColorization.enabled": true,
9495
"editor.codeActionWidget.includeNearbyQuickFixes": true,
95-
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
96+
"editor.fontFamily": "IBM Plex Mono,Menlo, Monaco, 'Courier New', monospace",
9697

9798
"files.autoSave": "onFocusChange",
9899

@@ -101,11 +102,9 @@
101102
"quickInput.background": "#18181b",
102103
"activityBar.background": "#18181b",
103104
"quickInputList.focusBackground": "#27272a",
104-
105105
"editorSuggestWidget.border": "#27272a",
106106
"editorSuggestWidget.background": "#18181b",
107107
"editorSuggestWidget.selectedBackground": "#27272a",
108-
109108
"editorHoverWidget.border": "#27272a",
110109
"editorHoverWidget.background": "#18181b"
111110
}

0 commit comments

Comments
 (0)