From fad1608443b30eb87f3fb9edc52d4ac692b4b304 Mon Sep 17 00:00:00 2001 From: Jasper Bok Date: Fri, 8 Nov 2024 14:14:48 +0100 Subject: [PATCH] Add Helix configuration --- private_dot_config/helix/config.toml | 15 +++++++++++++++ private_dot_config/helix/languages.toml | 3 +++ 2 files changed, 18 insertions(+) create mode 100644 private_dot_config/helix/config.toml create mode 100644 private_dot_config/helix/languages.toml diff --git a/private_dot_config/helix/config.toml b/private_dot_config/helix/config.toml new file mode 100644 index 0000000..930437c --- /dev/null +++ b/private_dot_config/helix/config.toml @@ -0,0 +1,15 @@ +theme = "catppuccin_mocha" + +[editor] +mouse = true + +[editor.cursor-shape] +insert = "bar" + +[editor.whitespace.render] +space = "all" +tab = "all" + +[editor.whitespace.characters] +space = "·" +tab = "→" diff --git a/private_dot_config/helix/languages.toml b/private_dot_config/helix/languages.toml new file mode 100644 index 0000000..468c7f6 --- /dev/null +++ b/private_dot_config/helix/languages.toml @@ -0,0 +1,3 @@ +[[language]] +name = "python" +formatter = { command = "ruff" , args = ["format", "-"] }