summaryrefslogtreecommitdiff
path: root/dot-config/helix/config.toml
diff options
context:
space:
mode:
authorJosé Juan Loeza Sierra <jj@xz6ze.com>2026-03-31 23:29:47 -0700
committerJosé Juan Loeza Sierra <jj@xz6ze.com>2026-03-31 23:31:50 -0700
commit1543fa7e63654042b577affc644bd170bc8858be (patch)
treebb7232ba400825d3bd7b673c55a3c007dfbd125b /dot-config/helix/config.toml
parent6bd0938c018b52c138d608977043467eae93fefd (diff)
remove unused configs
Diffstat (limited to 'dot-config/helix/config.toml')
-rw-r--r--dot-config/helix/config.toml42
1 files changed, 0 insertions, 42 deletions
diff --git a/dot-config/helix/config.toml b/dot-config/helix/config.toml
deleted file mode 100644
index 4d08cd8..0000000
--- a/dot-config/helix/config.toml
+++ /dev/null
@@ -1,42 +0,0 @@
-theme = "ayu_darkk"
-
-[editor]
-"line-number" = "relative"
-
-[editor.soft-wrap]
-enable = true
-
-[editor.lsp]
-"display-messages" = false
-"display-inlay-hints" = false
-
-[keys.normal]
-# Use system clipboard
-p = "paste_clipboard_after"
-P = "paste_clipboard_before"
-y = "yank_to_clipboard"
-Y = "yank_joined_to_clipboard"
-R = "replace_selections_with_clipboard"
-d = "delete_selection_noyank"
-"A-d" = ["yank_to_clipboard", "delete_selection_noyank"]
-
-"0" = "goto_line_start"
-"C-," = "remove_primary_selection"
-
-[keys.select]
-# Use system clipboard
-p = "paste_clipboard_after"
-P = "paste_clipboard_before"
-y = "yank_to_clipboard"
-Y = "yank_joined_to_clipboard"
-R = "replace_selections_with_clipboard"
-d = "delete_selection_noyank"
-"A-d" = ["yank_to_clipboard", "delete_selection_noyank"]
-
-"0" = "goto_line_start"
-
-[keys.normal." "]
-y = "yank"
-p = "paste_after"
-P = "paste_before"
-R = "replace_with_yanked"