Skip to content

Commit

Permalink
Create default Vimspector config (#46)
Browse files Browse the repository at this point in the history
* Create a basic .vimspector.json for Java if one doesn't exist
  * Add the setting `java.debug.vimspector.config.createIfNotExists`
* Add a basic .editorconfig
* Improve the README doc
  * Add a quick start
  * Add new features
  * Add new settings
  * Add goals and non-goals
  * Add a simple main method debug launch example
* Upgrade dependencies
* Set generic return type for executeCommand
  • Loading branch information
dansomething authored Aug 5, 2024
1 parent bb56b97 commit e1a0292
Show file tree
Hide file tree
Showing 9 changed files with 914 additions and 1,986 deletions.
22 changes: 22 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
; EditorConfig is awesome: http://EditorConfig.org

; top-most EditorConfig file
root = true

; base rules
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

; Dont remove trailing whitespace from markdown
; files since it messes up newlines
[*.md]
trim_trailing_whitespace = false

; Make does not work without tabs
[Makefile]
indent_style = tab
Loading

0 comments on commit e1a0292

Please sign in to comment.