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", "-"] }