Add helix configuration for inlay hints

main
trivernis 1 year ago
parent 0017da7b2e
commit ca1692d919
Signed by: Trivernis
GPG Key ID: DFFFCC2C7A02DB45

@ -15,12 +15,14 @@ select = "underline"
[editor.statusline]
left = ["mode", "spinner", "file-name"]
left = ["mode", "spinner", "spacer", "file-type-icon", "file-name"]
center = []
right = ["diagnostics", "selections", "position", "position-percentage", "separator", "file-encoding", "file-line-ending", "file-type"]
right = ["diagnostics", "selections", "position", "position-percentage", "separator", "file-encoding", "file-line-ending", "file-type", "separator", "spacer", "version-control", "spacer"]
separator = " │"
[editor.explorer]
[editor.lsp]
auto-signature-help = true
display-inlay-hints = true
[editor.indent-guides]
render = true

@ -40,6 +40,7 @@
"ui.window" = { fg = "foreground" }
"ui.virtual.ruler" = { bg = "ruler" }
"ui.virtual.indent-guide" = { fg = "ruler" }
"ui.virtual" = { fg = "hint" }
"ui.statusline" = { fg = "foreground", bg = "background_dark" }
"ui.statusline.inactive" = { fg = "comment", bg = "background_dark" }
@ -73,6 +74,7 @@ background_dark = "#2B1C3D"
foreground = "#f8f8f2"
ruler = "#453254"
comment = "#886C9C"
hint = "#8a56b0"
red = "#ff5555"
orange = "#ffb86c"
yellow = "#f1fa8c"

Loading…
Cancel
Save