From 320bd643133aac4689e3b28e496c00b7619ed7c5 Mon Sep 17 00:00:00 2001 From: Isshi0417 Date: Sat, 27 Jul 2024 16:27:08 +0900 Subject: [PATCH] configure helix editor --- Helix/.config/helix/config.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Helix/.config/helix/config.toml 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 = "|"