ocular-d / writing-extension-pack

Meta extension to install a list of extensions for writing documentation
GNU General Public License v2.0
2 stars 2 forks source link

Settings #55

Open svx opened 3 years ago

svx commented 3 years ago

https://dev.to/thegeoffstevens/vs-code-settings-you-should-customize-5e75

svx commented 3 years ago

Quickly find your unsaved work by highlighting modified tabs VS Code places a small dot in the editor's tabs next to files that have been edited but have not yet been saved. Changing your editor's settings to highlight modified tabs puts a colorful line at the top of the tab.

"workbench.editor.highlightModifiedTabs": true

Don't lose your working by turning on autosave If you'd rather not have to juggle modified tabs, files can be automatically saved after a delay, when the focus leaves the editor of the dirty file, or when the focus leaves the VS Code window.

To do so, change the auto save setting from off to afterDelay, onFocusChange, or onWindowChange.

 "files.autoSave": "afterDelay" 

Change things up by customizing your cursor We spend a lot of time staring at our cursors. Why not customize it?

"editor.cursorBlinking": "smooth" 

Clean up your files and trim extra newlines When a file is saved, VS Code will trim any extra newlines at the end of the file.

"files.trimFinalNewlines": true
svx commented 3 years ago

Line "rulers"add added, docs are still missing