New backup 2026-03-06 16:13:13

This commit is contained in:
Penelope Gwen 2026-03-06 16:13:13 -08:00
parent e1666ac285
commit e8de90eac9
5 changed files with 102 additions and 0 deletions

View file

@ -1 +1,2 @@
.config/nvim/lazy-lock.json .config/nvim/lazy-lock.json
.config/helix/runtime

View file

@ -0,0 +1,66 @@
theme = "seoul256-custom"
[editor]
line-number = "relative"
shell = ["bash", "-c"]
scroll-lines = 1
continue-comments = false
auto-completion = true
path-completion = true
auto-format = true
insert-final-newline = true
trim-trailing-whitespace = true
popup-border = "all"
clipboard-provider = "wayland"
[editor.statusline]
mode.normal = ""
mode.insert = ""
mode.select = "󱄽"
[editor.lsp]
enable = true
display-messages = true
snippets = true
display-inlay-hints = true
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.file-picker]
hidden = false
max-depth = 1
[editor.indent-guides]
render = true
[editor.whitespace]
render = "all"
[editor.whitespace.characters]
space = " "
nbsp = "⍽"
nnbsp = "␣"
tab = "→"
newline = ""
tabpad = "·"
[editor.gutters]
layout = ["diff", "diagnostics", "line-numbers", "spacer"]
[editor.gutters.line-numbers]
min-width = 2
[keys.insert]
esc = ["collapse_selection", "normal_mode"]
[keys.normal]
esc = ["collapse_selection", "keep_primary_selection"]
ret = ["move_line_down", "goto_first_nonwhitespace"]
0 = "goto_line_start"
[keys.select]
esc = ["collapse_selection", "keep_primary_selection", "normal_mode"]
0 = "goto_line_start"

View file

@ -0,0 +1,13 @@
[[language]]
name = "rust"
[language-server.rust-analyzer.config.check]
command = "clippy"
features = "all"
[language-server.rust-analyzer.config.rustfmt]
extraArgs = [ "+nightly" ]
[language-server.rust-analyzer.config]
inlayHints.closureReturnTypeHints.enable = "always"
inlayHints.closureCaptureHints.enable = true

View file

@ -0,0 +1,21 @@
# Seoul256 Dark Soft
# Author : EricHenry
# Original Creator: https://github.com/junegunn/seoul256.vim
inherits = "seoul256-dark"
"ui.background" = { }
"ui.gutter" = { modifiers = ["dim", "bold"] }
"ui.linenr" = { fg = "salmon" }
"ui.cursorline.primary" = { bg = "gray5" }
"ui.gutter.selected" = { bg = "gray8" }
"ui.linenr.selected" = { fg = "salmon2", modifiers = ["bold"] }
"ui.help" = { bg = "gray5" }
"ui.popup" = { bg = "gray5" }
"ui.menu" = { bg = "gray7" }
"ui.statusline" = { fg = "yellow1", modifiers = ["bold"] }
"ui.statusline.inactive" = { fg = "yellow", modifiers = ["dim"] }
"ui.statusline.normal" = { fg = "salmon2" }
"ui.statusline.insert" = { fg = "green3" }
"ui.statusline.select" = { fg = "cyan" }

View file

@ -16,3 +16,4 @@ Scripts/fix-swap-part.sh
.local/bin/ssh-agent-handler.sh .local/bin/ssh-agent-handler.sh
.config/starship.toml .config/starship.toml
.config/nvim .config/nvim
.config/helix