diff --git a/config/helix/.config/helix/config.toml b/config/helix/.config/helix/config.toml new file mode 100644 index 0000000..212be43 --- /dev/null +++ b/config/helix/.config/helix/config.toml @@ -0,0 +1,30 @@ +# https://docs.helix-editor.com/ +# https://github.com/helix-editor/helix/wiki + +theme = "github_dark" + +[editor] +true-color = true +mouse = true +bufferline = "multiple" + +[keys.normal] +G = "goto_file_end" +X = "extend_line_above" +esc = ["collapse_selection", "keep_primary_selection"] + +[keys.normal.space] +q = ":quit" +w = ":write" +l = ":config-reload" + +# [editor.cursor-shape] +# insert = "bar" +# normal = "block" +# select = "underline" + +[editor.file-picker] +hidden = false + +[editor.lsp] +display-messages = true diff --git a/config/helix/.config/helix/languages.toml b/config/helix/.config/helix/languages.toml new file mode 100644 index 0000000..85a225f --- /dev/null +++ b/config/helix/.config/helix/languages.toml @@ -0,0 +1,3 @@ +[[language]] +name = "rust" +auto-format = true