Last active
May 10, 2023 10:31
-
-
Save omas-public/b083117bed86569507bc99b226907385 to your computer and use it in GitHub Desktop.
for Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt update | |
sudo apt install neovim -y | |
mkdir ~/.config | |
git clone https://github.com/omas-public/nvim ~/.config/nvim | |
### python3 linter | |
sudo apt install python3-pip -y | |
pip3 install flake8 autopep8 black isort | |
echo 'export PATH=$PATH:$HOME/.local/bin' >> $HOME/.bash_aliases | |
source ~/.bash_aliases |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment