Skip to content

Commit e1a0292

Browse files
authored
Create default Vimspector config (#46)
* 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
1 parent bb56b97 commit e1a0292

File tree

9 files changed

+914
-1986
lines changed

9 files changed

+914
-1986
lines changed

.editorconfig

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
; EditorConfig is awesome: http://EditorConfig.org
2+
3+
; top-most EditorConfig file
4+
root = true
5+
6+
; base rules
7+
[*]
8+
indent_style = space
9+
indent_size = 2
10+
end_of_line = lf
11+
charset = utf-8
12+
trim_trailing_whitespace = true
13+
insert_final_newline = true
14+
15+
; Dont remove trailing whitespace from markdown
16+
; files since it messes up newlines
17+
[*.md]
18+
trim_trailing_whitespace = false
19+
20+
; Make does not work without tabs
21+
[Makefile]
22+
indent_style = tab

0 commit comments

Comments
 (0)