-
Download and install VS Code
-
Install VS Code extensions:
wget https://gitlab.com/tabrez/kinoite-setup/-/raw/main/install/install_vscode_extensions.sh?ref_type=heads -O install-vscode-extensions.sh bash install-vscode-extensions.sh
This file contains 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
ipython | |
ipykernel | |
jupyter | |
ipywidgets | |
ruff-lsp |
This file contains 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
//192.168.2.133/smb /home/tabrez/smb cifs credentials=/home/tabrez/smb_creds,guest,file_mode=0644,dir_mode=0755,uid=1000,gid=1000 0 0 | |
192.168.2.133:/mnt/truenas/nfs /home/tabrez/nfs nfs defaults,timeo=800,retrans=5,_netdev 0 0 |
This file contains 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 | |
wget https://mega.nz/linux/repo/Fedora_39/x86_64/megasync-Fedora_39.x86_64.rpm -O megasync.rpm | |
rpm-ostree install megasync.rpm | |
rm -rf megasync.rpm | |
wget --content-disposition https://mullvad.net/download/app/rpm/latest -O mullvad.rpm | |
rpm-ostree install mullvad.rpm | |
rm -f mullvad.rpm | |
rpm-ostree install jetbrains-mono-fonts |
LunarVim has very little documentation but the creator of the config has many videos on how to create similar vim configurations from scratch.
LunarVim installs its config in a separate folder and doesn't conflict with any neovim config already present.
-
Create a python virtual environment using
mamba
orpython
:cd/mkdir <project-dir> python -v venv .venv source activate .venv/bin/activate
-
Install packages using
mamba
orpip
after creating and activating a virtual environment:
This file contains 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 | |
# tested with mamba version 1.4.2 | |
# wget "https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-$(uname)-$(uname -m).sh" | |
# bash Mambaforge-$(uname)-$(uname -m).sh -b | |
mamba init | |
mamba create -n fastbook -y python=3.11.4 | |
source activate fastbook | |
mamba install --yes -c conda-forge ipywidgets=8.1.0 sentencepiece=0.1.99 nbdev=2.2.10 \ |
This file contains 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
#cloud-config | |
packages: | |
- ansible | |
users: | |
- default | |
- name: tabrez | |
sudo: ALL=(ALL) NOPASSWD:ALL | |
shell: /bin/bash | |
ssh_import_id: | |
- gh:tabrez |
NewerOlder