diff --git a/bin/hx b/bin/hx new file mode 100755 index 0000000..a04d6ed --- /dev/null +++ b/bin/hx @@ -0,0 +1,3 @@ +#!/bin/sh + +command helix "$@" diff --git a/default.conf.yaml b/default.conf.yaml index c03d8ef..64557f3 100644 --- a/default.conf.yaml +++ b/default.conf.yaml @@ -20,6 +20,7 @@ ~/.config/gh/config.yml: gh/config.yml ~/.config/gh-dash: gh-dash/ ~/.config/git: git/ + ~/.config/helix: helix/ ~/.config/hg: hg/ ~/.config/jrnl: jrnl/ ~/.config/kak: kak/ diff --git a/helix/config.toml b/helix/config.toml new file mode 100644 index 0000000..133f934 --- /dev/null +++ b/helix/config.toml @@ -0,0 +1,15 @@ +theme = "onedark" + +[editor] +scrolloff = 0 +cursorline = true + +[editor.cursor-shape] +insert = "bar" +normal = "block" +select = "underline" + +[editor.statusline] +left = ["mode", "spinner", "file-name"] +center = [] +right = ["diagnostics", "selections", "position", "position-percentage", "file-encoding"]