-
Notifications
You must be signed in to change notification settings - Fork 4
/
.st_config.py
33 lines (30 loc) · 909 Bytes
/
.st_config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python3
# This is a configuration file for users of the "st" command line search tool.
#
# Tool can be found here: https://github.com/djacobow/st
#
# If you'd like to use it, simply:
# 1. pull that repo somewhere convenient
# 2. add that repo to your path or add an alias to point write to the script st.py
CONFIG = {
'subpaths': {
'rr': ( 'repo root', []),
},
'code_search_paths': {
'rulos': {
'lib': {
'default': True,
'include': ['src/lib'],
'exclude': 'arm/common/CMSIS|periph/fat_sd|fatfs/ff.c|vendor_libraries|periph/libusb_stm32',
},
'app': {
'default': True,
'include': ['src/app'],
},
'util': {
'default': True,
'include': ['src/util'],
},
},
}
}