pkg update and first config fix

org-brain not working, add org-roam
This commit is contained in:
2022-12-19 23:02:34 +01:00
parent 02b3e07185
commit 82f05baffe
885 changed files with 356098 additions and 36993 deletions

View File

@@ -2,4 +2,4 @@
# name: v.begin(), v.end()
# key: beginend
# --
${1:v}.begin(), $1.end
${1:v}.begin(), $1.end()

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# uuid: 9c2aa6ee-9729-46d9-afdb-b6dc21f9f2e7
# contributor: Laam Pui <lpwowo@gmail.com>
# name: console.table
# key: cta
# group: console
# --
console.table(${1:object})

View File

@@ -0,0 +1,11 @@
# -*- mode: snippet -*-
# contributor: takeo obara<bararararatty@gmail.com>
# name: enum
# key: enum
# group : definitions
# --
enum ${1:Name}${2:: type} {
case: ${3:One};
case: ${4:Two};
$0
}

View File

@@ -0,0 +1,10 @@
# -*- mode: snippet -*-
# contributor: takeo obara<bararararatty@gmail.com>
# name: match
# key: match
# group : control structure
# --
match (${1:$var}) {
${2:$cond} => ${3:$return},
$0
};

View File

@@ -5,7 +5,8 @@
# group: definitions
# --
def ${1:name}($2):
\"\"\"$3
${2:$(python-args-to-docstring-numpy)}
\"\"\"
$0
\"\"\"$3
${2:$(python-args-to-docstring-numpy)}
\"\"\"
$0