- Fix Android SDK path (deprecated variable name)
- Added ale configuration
This commit is contained in:
ziro 2021-12-26 09:26:55 +07:00
parent 0ff7557d64
commit e7abdae8ae
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
2 changed files with 10 additions and 1 deletions

View file

@ -306,3 +306,12 @@ let g:python_highlight_all = 1
" }
" })
" EOF
" --- ale
let g:ale_fixers = {
\ "python": ["black"],
\}
let g:ale_linters = {
\ "python": ["pflake8", "black"],
\}

View file

@ -1,6 +1,6 @@
#!/bin/zsh
export ANDROID_HOME="/opt/android-sdk"
export ANDROID_SDK_ROOT="/opt/android-sdk"
# -- Path
# PATH="$(du "$HOME/.local/bin/" | cut -f2 | paste -sd ':')${PATH:+:${PATH}}"