Text Editors
micro
| Install micro editor for the terminal using winget |
|---|
| winget install zyedidia.micro
|
CudaText
Download current version from project homepage: https://cudatext.github.io/download.html
| Extract dowloaded file to |
|---|
| |
| Add registry entry for explorer context menu |
|---|
| Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\CudaText]
"Icon"="C:\\Custom\\cudatext\\cudatext.exe"
@="Öffnen mit CudaText"
[HKEY_CLASSES_ROOT\*\shell\CudaText\Command]
@="C:\\Custom\\cudatext\\cudatext.exe %1"
|
| Change default theme and font in settings\user.json |
|---|
| {
"ui_theme": "ebony",
"ui_theme_syntax": "sub",
"font_name": "Consolas",
"font_size": 11
}
|
| Change keyboard shortcut to micro style for F2 and F10 in settings\keys.json |
|---|
| {
"2502": {
"name": "file: save file",
"s1": [
"Ctrl+S"
],
"s2": [
"F2"
]
},
"2510": {
"name": "file: close tab",
"s1": [
"Ctrl+W"
],
"s2": [
"F10"
]
}
}
|