From c8fa24976938236e6c9556c4f2f68cfbf6250795 Mon Sep 17 00:00:00 2001 From: Sam Nystrom Date: Tue, 11 Apr 2023 15:10:51 -0500 Subject: feat: add helix config --- .config/helix/config.toml | 7 +++++++ .config/helix/themes/ctp.toml | 11 +++++++++++ 2 files changed, 18 insertions(+) create mode 100644 .config/helix/config.toml create mode 100644 .config/helix/themes/ctp.toml (limited to '.config') diff --git a/.config/helix/config.toml b/.config/helix/config.toml new file mode 100644 index 0000000..79999c1 --- /dev/null +++ b/.config/helix/config.toml @@ -0,0 +1,7 @@ +theme = "ctp" + +[editor] +gutters = [ "diagnostics", "spacer", "line-numbers", "spacer", "diff" ] +bufferline = "always" +mouse = false +indent-guides = { render = true } diff --git a/.config/helix/themes/ctp.toml b/.config/helix/themes/ctp.toml new file mode 100644 index 0000000..824f64e --- /dev/null +++ b/.config/helix/themes/ctp.toml @@ -0,0 +1,11 @@ +inherits = "catppuccin_macchiato" + +hint = { fg = "text" } +info = { fg = "blue" } +warning = { fg = "peach" } +error = { fg = "red" } + +diagnostic.hint = { underline = { color = "text" } } +diagnostic.info = { underline = { color = "blue" } } +diagnostic.warning = { underline = { color = "peach" } } +diagnostic.error = { underline = { color = "red" } } -- cgit v1.2.3