From 2c7852627b91945b695a6d4ce63c59c831ce9109 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Fri, 29 Dec 2023 18:50:41 -0800 Subject: [PATCH] Make helix default to true color mode And comment a few settings for readability --- .config/helix/config.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.config/helix/config.toml b/.config/helix/config.toml index 35d106b..628e29a 100644 --- a/.config/helix/config.toml +++ b/.config/helix/config.toml @@ -1,11 +1,21 @@ theme = "base16_qvp" [editor] +# Do not interact with my mouse at all; that's the terminal's job mouse = false middle-click-paste = false + +# Pretty gutter flags for errors and diff changes gutters = ["diagnostics", "diff"] + +# Allow modes to change colors in the statusbar color-modes = true +# Force true color mode even if hx can't detect support for it +# Fixes SSHing to servers with incomplete terminfo +# Annoying but beats what I had to do for vim to support alacritty :/ +true-color = true + [editor.statusline] left = ["mode", "separator", "file-name", "spinner"] right = ["file-type", "version-control", "file-encoding", "file-line-ending", "selections", "position", "diagnostics"]