From 050d49340bb8e4cbf26490254cd4d60b88c0a5d5 Mon Sep 17 00:00:00 2001 From: mo8it Date: Fri, 18 Aug 2023 00:38:28 +0200 Subject: [PATCH] Update Helix config --- .config/helix/config.toml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.config/helix/config.toml b/.config/helix/config.toml index 1de0972..2c60051 100644 --- a/.config/helix/config.toml +++ b/.config/helix/config.toml @@ -1,21 +1,26 @@ -theme = "onedark" +theme = "dracula" [editor] mouse = false shell = ["fish", "-c"] cursorline = true +idle-timeout = 5 true-color = true -bufferline = "multiple" +bufferline = "always" color-modes = true [editor.lsp] display-messages = true +goto-reference-include-declaration = false [editor.cursor-shape] insert = "bar" normal = "block" select = "underline" +[editor.file-picker] +hidden = false + [editor.whitespace.render] space = "none" tab = "none" @@ -29,7 +34,6 @@ p = "paste_clipboard_after" P = "paste_clipboard_before" y = "yank_joined_to_clipboard" D = ["yank_main_selection_to_clipboard", "delete_selection"] -C-d = ["extend_to_line_bounds", "delete_selection"] V = "extend_to_line_end" C-k = "goto_next_buffer"