Auto saved by Logseq

This commit is contained in:
2022-04-09 12:10:13 +02:00
parent 5ae2aa4176
commit ffe34b9887
+3 -2
View File
@@ -5,10 +5,11 @@
- `for i in *py; do expand -t 4 $i | sponge $i; done` - `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: - In .vimrc you might need to add:
- ```" work around python filetype's insistence that tabs are 8 spaces wide - ```
" work around python filetype's insistence that tabs are 8 spaces wide
let g:python_recommended_style = 0 let g:python_recommended_style = 0
filetype plugin indent on filetype plugin indent on
syntax on syntax on
set tabstop=4 set tabstop=4
``` ```
- Update: I m - Update: I'm reverting this experiment, I think it would impose too large of a burden on new contributors at this point.