Last active
May 2, 2023 23:56
-
-
Save mengwangk/c554ea30a701b0884b921a819ed34df1 to your computer and use it in GitHub Desktop.
A Walkthrough on Helix — A Post-Modern Modal Text Editor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
theme = "tokyonight" | |
[editor] | |
line-number = "relative" | |
true-color = true | |
cursorline = true | |
gutters = ["diagnostics", "spacer", "line-numbers", "spacer", "diff"] | |
[keys.insert] | |
j = { k = "normal_mode" } | |
[editor.cursor-shape] | |
insert = "bar" | |
normal = "block" | |
select = "underline" | |
[editor.lsp] | |
display-messages = true | |
[editor.statusline] | |
left = ["mode", "spinner"] | |
center = ["file-name"] | |
right = ["diagnostics", "selections", "position", "file-encoding", "file-line-ending", "file-type"] | |
separator = "│" | |
mode.normal = "NORMAL" | |
mode.insert = "INSERT" | |
mode.select = "SELECT" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment