diff --git a/Helix/.config/helix/config.toml b/Helix/.config/helix/config.toml new file mode 100644 index 0000000..b23866a --- /dev/null +++ b/Helix/.config/helix/config.toml @@ -0,0 +1,23 @@ +theme = "gruvbox" + +[editor] +line-number = "relative" +rulers = [80] + +[editor.statusline] +left = ["mode", "spinner"] +center = ["file-name"] +right = ["diagnostics", "selections", "position", "file-encoding", "file-line-ending", "file-type"] +separator = "│" +mode.normal = "NORMAL" +mode.insert = "INSERT" +mode.select = "SELECT" + +[editor.cursor-shape] +normal = "block" +insert = "bar" +select = "block" + +[editor.indent-guides] +render = true +character = "|"