Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.81 KB

README.md

File metadata and controls

39 lines (29 loc) · 1.81 KB

Introduction

This repository helps deploy a development environment tailored for Python programmers in their home directory. The following tools will be configured:

  • neovim
  • zsh
  • miniconda
  • tmux

My Config/Dotfiles and Installation Scripts for Tools

Users can find individual configuration and installation scripts below.

Tools Config/Dotfiles Path Installation script
neovim configs/lazynvim/ deploy_apps/nonauto/install_lazyvim.sh
zsh configs/shell/rcfile.sh deploy_apps/install_zsh.sh
tmux configs/tmux/ deploy_apps/install_tmux.sh
miniconda - deploy_apps/deploy_miniconda.sh

Environment

It is mainly tested on ubuntu.

Ubuntu 18.04 or below is not supported now.

Installation

You can install the entire environment with a single command (experimental):

sudo apt-get install -y git curl
cd ~
git clone https://github.com/you-n-g/deploy  # (Alternative) git clone [email protected]:you-n-g/deploy.git
# Not using visudo is very dangerous!!!  visudo is suggested!!!
echo  "$USER ALL=(ALL) NOPASSWD:ALL" | sudo tee /etc/sudoers.d/80-personal

cd deploy
./deploy.sh # (Alternative if ssh clone instead of ssh) ./deploy.sh -s