backlog
This commit is contained in:
parent
f7c2b96150
commit
5d8b01834f
5 changed files with 72 additions and 5 deletions
26
common/helix/config.toml
Normal file
26
common/helix/config.toml
Normal 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 = "▎"
|
4
common/helix/languages.toml
Normal file
4
common/helix/languages.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[[language]]
|
||||
name = "javascript"
|
||||
formatter = { command = "prettier", args = ["--parser", "babel"] }
|
||||
auto-format = true
|
Loading…
Add table
Add a link
Reference in a new issue