initial commit
This commit is contained in:
commit
48c9f9f456
2 changed files with 48 additions and 0 deletions
47
config.toml
Normal file
47
config.toml
Normal 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
1
languages.toml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
|
Loading…
Add table
Reference in a new issue