diff --git a/dot_config/helix/config.toml b/dot_config/helix/config.toml new file mode 100644 index 0000000..060d7b0 --- /dev/null +++ b/dot_config/helix/config.toml @@ -0,0 +1,22 @@ +theme = "sonokai" + +[keys.normal] +"backspace" = { c = ":config-open"} +"backspace" = { r = [":w", ":config-reload"]} + +[editor.lsp] +display-messages = true + +[editor.cursor-shape] +insert = "bar" +normal = "block" +select = "underline" + +[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" \ No newline at end of file diff --git a/dot_config/helix/languages.toml b/dot_config/helix/languages.toml new file mode 100644 index 0000000..3579be5 --- /dev/null +++ b/dot_config/helix/languages.toml @@ -0,0 +1,22 @@ +[[language]] +name = "python" +roots = ["pyproject.toml"] +formatter = { command = "black", args = ["--quiet", "-"] } +#language-server = { command = "pyright-langserver", args = ["--stdio"] } +config = {} +auto-format = true +#name = "python" +#scope = "source.python" +#injection-regex = "python" +#file-types = ["py","pyi","py3","pyw","ptl",".pythonstartup",".pythonrc","SConstruct"] +#shebangs = ["python"] +#roots = [] +#comment-token = "#" +#auto-format = true +#language-server = { command = "pylsp" } +#indent = { tab-width = 4, unit = " " } +#formatter = { command = "black", args = ["--quiet", "-"] } + +#[[grammar]] +#name = "python" +#source = { git = "https://github.com/tree-sitter/tree-sitter-python", rev = "62827156d01c74dc1538266344e788da74536b8a" } \ No newline at end of file