this repo has no description

modified y behaviour in helix

+3 -4
+2 -2
.config/helix/config.toml
··· 32 32 "ret" = ["move_line_down", "goto_first_nonwhitespace"] # Maps the enter key to move to start of next line 33 33 X = "extend_line_above" 34 34 D = "delete_char_backward" 35 - y = "yank_main_selection_to_clipboard" 36 - Y = "yank_joined_to_clipboard" 35 + y = ":clipboard-yank-join" 36 + # Y = "yank_joined_to_clipboard" 37 37 # p = "paste_clipboard_before" 38 38 "H" = ":toggle lsp.display-inlay-hints" 39 39
+1 -2
.config/helix/languages.toml
··· 46 46 scope = "source.ts" 47 47 injection-regex = "(ts|typescript)" 48 48 language-servers = [ "typescript-language-server", "eslint" ] 49 - # language-servers = [ { except-features = ["format"], name = "typescript-language-server" }, "eslint" ] 50 - formatter = { command = "prettier", args = ["--stdin-filepath", "file.ts"] } 49 + formatter = { command = "prettier", args = ["--stdin-filepath", "file.ts", "--parser", "babel-ts"] } 51 50 # formatter = { command = "dprint", args = [ "fmt", "--stdin", "typescript" ] } 52 51 auto-format = true 53 52 file-types = ["ts", "mts", "cts"]