This commit is contained in:
Cynthia Foxwell 2022-11-30 12:20:47 -07:00
parent f7c2b96150
commit 5d8b01834f
5 changed files with 72 additions and 5 deletions

26
common/helix/config.toml Normal file
View file

@ -0,0 +1,26 @@
theme = "tokyonight"
[editor]
line-number = "relative"
cursorline = true
color-modes = true
[editor.statusline]
left = ["mode", "file-name"]
center = []
right = ["spinner", "diagnostics", "selections", "position", "file-encoding", "file-line-ending", "file-type"]
[editor.cursor-shape]
normal = "block"
insert = "bar"
select = "underline"
[editor.whitespace]
render = "all"
[editor.whitespace.characters]
newline = "↴"
[editor.indent-guides]
render = true
character = "▎"

View file

@ -0,0 +1,4 @@
[[language]]
name = "javascript"
formatter = { command = "prettier", args = ["--parser", "babel"] }
auto-format = true