From dfc9fd686cb7a36b96104f9d49519c57ed77e562 Mon Sep 17 00:00:00 2001 From: holly sparkles Date: Thu, 18 Apr 2024 21:03:30 +0200 Subject: [PATCH] add helix config --- .config/helix/config.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .config/helix/config.toml diff --git a/.config/helix/config.toml b/.config/helix/config.toml new file mode 100644 index 0000000..cac5718 --- /dev/null +++ b/.config/helix/config.toml @@ -0,0 +1,26 @@ +theme = "catppuccin_mocha" + +[editor] +rulers = [80, 120] + +[editor.cursor-shape] +insert = "bar" +normal = "block" +select = "underline" + +[editor.indent-guides] +render = true +character="┊" +skip-levels = 1 + +[editor.lsp] +display-messages = true +display-inlay-hints = true + +[keys.normal] +"backspace"= { f = ":pipe fmt -w 80"} + +[keys.normal."+"] +m = ":run-shell-command make" +c = ":run-shell-command cargo build" +t = ":run-shell-command cargo test" \ No newline at end of file -- libgit2 1.7.2