Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Settings #55

Open
svx opened this issue Dec 4, 2020 · 2 comments
Open

Settings #55

svx opened this issue Dec 4, 2020 · 2 comments

Comments

@svx
Copy link
Collaborator

svx commented Dec 4, 2020

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

@svx
Copy link
Collaborator Author

svx commented Dec 18, 2020

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
Copy link
Collaborator Author

svx commented Dec 18, 2020

  • Line length maker with same settings as remark (plus docs on how to change)
  • whitespace

Line "rulers"add added, docs are still missing

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant