Skip to content

Commit

Permalink
helix: flatten config
Browse files Browse the repository at this point in the history
  • Loading branch information
jzelinskie committed Feb 23, 2024
1 parent d5fdc0e commit 7ea542f
Showing 1 changed file with 12 additions and 24 deletions.
36 changes: 12 additions & 24 deletions helix/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,21 @@ theme = "monokai_soda"
auto-format = true
auto-pairs = false
bufferline = "always"
cursor-shape.insert = "bar"
indent-guides.character = ""
indent-guides.render = true
insert-final-newline = true
lsp.display-messages = true
rulers = [80, 100]
soft-wrap.enable = true
statusline.left = ["mode", "spinner", "file-name"]
statusline.right = ["diagnostics", "selections", "position", "file-encoding", "file-line-ending", "file-type"]
true-color = true
insert-final-newline = true

[editor.cursor-shape]
insert = "bar"

[editor.lsp]
display-messages = true

[editor.statusline]
left = ["mode", "spinner", "file-name"]
right = ["diagnostics", "selections", "position", "file-encoding", "file-line-ending", "file-type"]

[editor.whitespace.render]
tab = "all"
newline = "all"

[editor.whitespace.characters]
tab = "·"
newline = "¬"
tabpad = "·"

[editor.indent-guides]
render = true
character = ""
whitespace.characters.newline = "¬"
whitespace.characters.tab = "·"
whitespace.characters.tabpad = "·"
whitespace.render.newline = "all"
whitespace.render.tab = "all"

[keys.normal]
"up" = ["keep_primary_selection","delete_selection","move_line_up","paste_before"]
Expand Down

0 comments on commit 7ea542f

Please sign in to comment.