diff --git a/.config/helix/config.toml b/.config/helix/config.toml index 17ca196..72f94aa 100644 --- a/.config/helix/config.toml +++ b/.config/helix/config.toml @@ -5,4 +5,7 @@ theme = "myonedark" # auto-completion = false [editor.cursor-shape] -insert = "bar" \ No newline at end of file +insert = "bar" + +[editor.indent-guides] +render = true diff --git a/.config/helix/languages.toml b/.config/helix/languages.toml index 12600a6..7933392 100644 --- a/.config/helix/languages.toml +++ b/.config/helix/languages.toml @@ -1,4 +1,4 @@ -use-grammars = { only = [ "awk", "bash", "bibtex", "c", "cmake", "cpp", "css", "diff", "dockerfile", "dot", "fish", "gdscript", "git-attributes", "git-commit", "git-config", "git-ignore", "git-rebase", "glsl", "go", "godot-resource", "gomod", "gotmpl", "gowork", "html", "java", "javascript", "jinja", "json", "kotlin", "latex", "lua", "make", "markdown", "passwd", "perl", "php", "python", "rust", "scss", "sql", "toml", "typescript", "vue", "wren", "xml", "yaml" ] } +use-grammars = { only = [ "awk", "bash", "bibtex", "c", "cmake", "cpp", "css", "diff", "dockerfile", "dot", "fish", "gdscript", "git-attributes", "git-commit", "git-config", "git-ignore", "git-rebase", "glsl", "go", "godot-resource", "gomod", "gotmpl", "gowork", "html", "java", "javascript", "jinja", "json", "kotlin", "latex", "lua", "make", "markdown", "passwd", "perl", "php", "python", "rust", "scss", "sql", "toml", "typescript", "typst", "vue", "wren", "xml", "yaml" ] } [[language]] name = "go" diff --git a/.config/helix/themes/myonedark.toml b/.config/helix/themes/myonedark.toml index caa148b..e1c86e1 100644 --- a/.config/helix/themes/myonedark.toml +++ b/.config/helix/themes/myonedark.toml @@ -58,9 +58,12 @@ diagnostic = { modifiers = ["underlined"] } "ui.selection" = { bg = "light-gray" } "ui.selection.primary" = { bg = "gray" } -"ui.linenr" = { fg = "linenr", modifiers = ["dim"] } +# "ui.linenr" = { fg = "linenr", modifiers = ["dim"] } +"ui.linenr" = { fg = "linenr" } "ui.linenr.selected" = { fg = "white" } +"ui.virtual.indent-guide" = { fg = "gray" } + "ui.statusline" = { fg = "white", bg = "light-black" } "ui.statusline.inactive" = { fg = "light-gray", bg = "light-black" } @@ -86,4 +89,4 @@ black = "#1d212a" light-black = "#333740" gray = "#333740" light-gray = "#5C6370" -linenr = "#333740" +linenr = "#7a7a7a"