AutoYADM commit: 2025-04-05 15:00:07
This commit is contained in:
parent
8219ec0917
commit
b815bb2046
3 changed files with 19 additions and 0 deletions
2
.config/helix/.gitignore
vendored
2
.config/helix/.gitignore
vendored
|
@ -1 +1,3 @@
|
||||||
runtime/grammars/
|
runtime/grammars/
|
||||||
|
external-snippets/
|
||||||
|
external-snippets/**
|
||||||
|
|
|
@ -6,6 +6,15 @@ git = "https://github.com/rafamadriz/friendly-snippets.git"
|
||||||
scope = ["python"]
|
scope = ["python"]
|
||||||
path = "snippets/python/python.json"
|
path = "snippets/python/python.json"
|
||||||
[[sources.paths]]
|
[[sources.paths]]
|
||||||
|
scope = ["python"]
|
||||||
|
path = "snippets/python/comprehension.json"
|
||||||
|
[[sources.paths]]
|
||||||
|
scope = ["python"]
|
||||||
|
path = "snippets/python/unittest.json"
|
||||||
|
[[sources.paths]]
|
||||||
|
scope = ["python"]
|
||||||
|
path = "snippets/python/pydoc.json"
|
||||||
|
[[sources.paths]]
|
||||||
scope = ["rust"]
|
scope = ["rust"]
|
||||||
path = "snippets/rust/rust.json"
|
path = "snippets/rust/rust.json"
|
||||||
[[sources.paths]]
|
[[sources.paths]]
|
||||||
|
@ -15,4 +24,7 @@ path = "snippets/markdown.json"
|
||||||
scope = ["go"]
|
scope = ["go"]
|
||||||
path = "snippets/go.json"
|
path = "snippets/go.json"
|
||||||
[[sources.paths]]
|
[[sources.paths]]
|
||||||
|
scope = ["html"]
|
||||||
|
path = "snippets/html.json"
|
||||||
|
[[sources.paths]]
|
||||||
path = "snippets/loremipsum.json"
|
path = "snippets/loremipsum.json"
|
||||||
|
|
5
.config/helix/snippets/python.toml
Normal file
5
.config/helix/snippets/python.toml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
[[snippets]]
|
||||||
|
prefix = "ld"
|
||||||
|
scope = ["python"]
|
||||||
|
body = 'log.debug("$1")'
|
||||||
|
description = 'Debug log level'
|
Loading…
Add table
Add a link
Reference in a new issue