Adds the clearest current starting point of my dotfiles I can make out. There is no way to automate anything yet. Lots of stuff is missing from the nix configuration, which needs to be added per machine.
42 lines
896 B
TOML
42 lines
896 B
TOML
theme = "ayu_mirage"
|
|
|
|
[editor]
|
|
bufferline = "multiple"
|
|
color-modes = true
|
|
cursorline = true
|
|
line-number = "relative"
|
|
gutters = ["diagnostics", "spacer", "line-numbers", "spacer", "diff"]
|
|
rulers = [80]
|
|
|
|
[editor.cursor-shape]
|
|
insert = "bar"
|
|
normal = "block"
|
|
select = "underline"
|
|
|
|
[editor.file-picker]
|
|
hidden = false
|
|
|
|
[editor.statusline]
|
|
left = ["mode", "spinner", "read-only-indicator", "version-control"]
|
|
center = ["file-modification-indicator", "file-name", "separator", "file-type"]
|
|
|
|
[editor.lsp]
|
|
display-messages = true
|
|
|
|
[editor.whitespace]
|
|
render = "all"
|
|
[editor.whitespace.characters]
|
|
space = "·"
|
|
nbsp = "⍽"
|
|
nnbsp = "␣"
|
|
tab = "→"
|
|
newline = "⏎"
|
|
tabpad = "·"
|
|
|
|
[editor.indent-guides]
|
|
render = true
|
|
character = "╎" # Some characters that work well: "▏", "┆", "┊", "⸽"
|
|
skip-levels = 1
|
|
|
|
[keys.normal]
|
|
";" = "command_mode" # Use ; instead of : to type commands without shifting.
|