initial commit

This commit is contained in:
cscherr 2025-06-04 11:44:39 +02:00
commit 48c9f9f456
Signed by: cscherrNT
GPG key ID: 8E2B45BC51A27EA7
2 changed files with 48 additions and 0 deletions

47
config.toml Normal file
View file

@ -0,0 +1,47 @@
theme = "rose_pine_moon"
[editor]
mouse = false
auto-completion = true
path-completion = true
auto-format = true
true-color = true
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.lsp]
enable = true
[editor.whitespace.render]
space = "all"
tab = "all"
nbsp = "none"
nnbsp = "none"
newline = "none"
[editor.whitespace.characters]
space = "·"
nbsp = "⍽"
nnbsp = "␣"
tab = "→"
newline = "⏎"
tabpad = "·" # Tabs will look like "→···" (depending on tab width)
[keys.normal]
C-g = [
":write-all",
":new",
":insert-output lazygit",
":buffer-close!",
":redraw",
":reload-all"
]
[keys.insert]
C-h = "move_char_left"
C-j = "move_line_down"
C-k = "move_line_up"
C-l = "move_char_right"

1
languages.toml Normal file
View file

@ -0,0 +1 @@