Auto saved by Logseq

This commit is contained in:
2022-04-09 11:54:12 +02:00
parent 6e841756e0
commit cf941df8f4
+8 -1
View File
@@ -3,4 +3,11 @@
- [[sponge]] is in [[moreutils]]
- To go from tabs to spaces in Python code:
- `for i in *py; do expand -t 4 $i | sponge $i; done`
- [[pep8]] is against tabs in Python code. We are currently experimenting with using tabs in [[agora server]] regardless.
- [[pep8]] is against tabs in Python code. We are currently experimenting with using tabs in [[agora server]] regardless.
- In .vimrc you might need to add:
- ```" work around python filetype's insistence that tabs are 8 spaces wide
let g:python_recommended_style = 0
filetype plugin indent on
syntax on
set tabstop=4
```