/ commented out all changes

starting with default/built-in cfg
This commit is contained in:
committer@tuxwarrior
2025-04-27 08:44:00 -05:00
parent e894254232
commit 2225ee94aa

View File

@@ -4,30 +4,30 @@
[editor] [editor]
# Show currently open buffers, only when more than one exists. # Show currently open buffers, only when more than one exists.
bufferline = "multiple" #bufferline = "multiple"
# Highlight all lines with a cursor # Highlight all lines with a cursor
cursorline = true #cursorline = true
# Use relative line numbers # Use relative line numbers
line-number = "relative" #line-number = "relative"
# Show a ruler at column 120 # Show a ruler at column 120
rulers = [120] #rulers = [120]
# Force the theme to show colors # Force the theme to show colors
true-color = true #true-color = true
[editor.cursor-shape] [editor.cursor-shape]
insert = "bar" #insert = "bar"
normal = "block" #normal = "block"
select = "underline" #select = "underline"
[editor.indent-guides] [editor.indent-guides]
character = "╎" #character = "╎"
render = true #render = true
[editor.lsp] [editor.lsp]
# Disable automatically popups of signature parameter help # Disable automatically popups of signature parameter help
auto-signature-help = false #auto-signature-help = false
# Show LSP messages in the status line # Show LSP messages in the status line
display-messages = true #display-messages = true
[editor.statusline] [editor.statusline]
#left = ["mode", "spinner", "version-control", "file-name"] #left = ["mode", "spinner", "version-control", "file-name"]
@@ -37,13 +37,13 @@ display-messages = true
#"A-." = "goto_next_buffer" #"A-." = "goto_next_buffer"
#"A-w" = ":buffer-close" #"A-w" = ":buffer-close"
#"A-/" = "repeat_last_motion" #"A-/" = "repeat_last_motion"
A-w = [":toggle soft-wrap.enable", ":redraw"] #A-w = [":toggle soft-wrap.enable", ":redraw"]
C-s = ":w" #C-s = ":w"
[keys.insert] [keys.insert]
# https://docs.helix-editor.com/remapping.html # https://docs.helix-editor.com/remapping.html
C-s = ":w" # Maps Ctrl-s to the typable command :w which is an alias for :write (save file) #C-s = ":w" # Maps Ctrl-s to the typable command :w which is an alias for :write (save file)
#A-down = ["extend_to_line_bounds", "delete_selection", "paste_after"] #A-down = ["extend_to_line_bounds", "delete_selection", "paste_after"]
#A-up = ["extend_to_line_bounds", "delete_selection", "move_line_up", "paste_before"] #A-up = ["extend_to_line_bounds", "delete_selection", "move_line_up", "paste_before"]
@@ -51,11 +51,11 @@ C-s = ":w" # Maps Ctrl-s to the typable command :w which is an alias for :write
#"A-up" = [ "extend_to_line_bounds", "extend_line_above", "split_selection_on_newline", "rotate_selection_contents_forward", "keep_primary_selection" ] #"A-up" = [ "extend_to_line_bounds", "extend_line_above", "split_selection_on_newline", "rotate_selection_contents_forward", "keep_primary_selection" ]
# https://github.com/helix-editor/helix/discussions/5764 # https://github.com/helix-editor/helix/discussions/5764
A-down = [ "keep_primary_selection", "move_line_down", "extend_to_line_bounds", "extend_line_above", "split_selection_on_newline", "select_mode", "goto_line_end_newline", "normal_mode", "rotate_selection_contents_forward", "keep_primary_selection", "move_line_down", "insert_mode" ] #A-down = [ "keep_primary_selection", "move_line_down", "extend_to_line_bounds", "extend_line_above", "split_selection_on_newline", "select_mode", "goto_line_end_newline", "normal_mode", "rotate_selection_contents_forward", "keep_primary_selection", "move_line_down", "insert_mode" ]
A-up = [ "keep_primary_selection", "extend_to_line_bounds", "extend_line_above", "split_selection_on_newline", "select_mode", "goto_line_end_newline", "normal_mode", "rotate_selection_contents_forward", "keep_primary_selection", "insert_mode" ] #A-up = [ "keep_primary_selection", "extend_to_line_bounds", "extend_line_above", "split_selection_on_newline", "select_mode", "goto_line_end_newline", "normal_mode", "rotate_selection_contents_forward", "keep_primary_selection", "insert_mode" ]
A-right = [ "move_next_word_end" ] #A-right = [ "move_next_word_end" ]
A-left = [ "move_prev_word_start" ] #A-left = [ "move_prev_word_start" ]
# https://github.com/helix-editor/helix/issues/136 # https://github.com/helix-editor/helix/issues/136
A-w = [":toggle soft-wrap.enable", ":redraw"] #A-w = [":toggle soft-wrap.enable", ":redraw"]