This commit is contained in:
2026-02-01 13:58:13 +02:00
parent b89db2e5c3
commit 3200c6398a
8 changed files with 20 additions and 8 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ A-e = "move_parent_node_end"
A-b = "move_parent_node_start"
C-p = [
':insert-output set p (wl-paste -t text/html 2>/dev/null); and printf "$p" | html2text -b0 | head -c -2; or wl-paste --no-newline 2>/dev/null',
':insert-output set p (wl-paste -t text/html 2>/dev/null); and printf "$p" | html2text -b0 | head -c -1; or wl-paste --no-newline 2>/dev/null',
"append_mode",
"collapse_selection",
]
+5 -2
View File
@@ -94,7 +94,7 @@ exportPdf = "never" # onSave, default: never
[[language]]
name = "env"
file-types = ["conf", { glob = ".envrc" }]
file-types = ["conf", { glob = ".env*" }, { glob = "env.example" }]
[[language]]
name = "devicetree"
@@ -178,5 +178,8 @@ extraArgs = [
# Use in production
"-Aclippy::restriction", # lints which prevent the use of language and library features
# Other
"-Aclippy::must_use_candidate", # must_use is rather annoing
"-Aclippy::must_use_candidate", # must_use is rather annoing
"-Aclippy::cognitive_complexity",
"-Aclippy::too_many_lines",
"-Aclippy::missing_errors_doc",
]
+5
View File
@@ -1,5 +1,10 @@
inherits = "carbonfox"
"ui.background" = { bg = "bg0" }
"ui.cursorline.primary" = { bg = "bg2" }
"ui.virtual.ruler" = { bg = "bg2" }
warning = "magenta"
error = "red"
info = "blue"