Advertisement
Guest User

Helix config

a guest
Jun 27th, 2025
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. theme = "ashen"
  2.  
  3. [editor]
  4. cursorline = true
  5. color-modes = true
  6. true-color = true
  7. undercurl = true
  8. line-number = "relative"
  9. mouse = false
  10.  
  11. [editor.cursor-shape]
  12. insert = "bar"
  13. normal = "block"
  14. select = "underline"
  15.  
  16. [editor.indent-guides]
  17. render = true
  18. skip-levels = 1
  19.  
  20. [editor.inline-diagnostics]
  21. cursor-line = "hint"
  22.  
  23. [editor.lsp]
  24. display-inlay-hints = true
  25.  
  26. [keys.normal]
  27. C-p = "file_picker"
  28. C-j = ["save_selection", "goto_next_diag"]
  29. C-k = ["save_selection", "goto_prev_diag"]
  30. C-y = [
  31. ':sh rm -f /tmp/unique-file',
  32. ':insert-output yazi %{buffer_name} --chooser-file=/tmp/unique-file',
  33. ':insert-output echo "\x1b[?1049h\x1b[?2004h" > /dev/tty',
  34. ':open %sh{cat /tmp/unique-file}',
  35. ':redraw',
  36. ]
  37. # , collapses multiple cursors
  38.  
  39. [keys.normal.space]
  40. w = ":w"
  41. q = ":q"
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement