Skip to content

my dotfiles

Notifications You must be signed in to change notification settings

pit-ray/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dotfiles

Setup Vim

The .vimrc supports cross-platform. Furthermore, it does not need to require preparation to construct .vim/vimfiles. All process is done automatically by .vimrc.

cp dotfiles/.vimrc ~

Setup the environment for LaTeX on Windows.

  1. Install chocolatey.
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
  1. Install some utilities
choco install dotfiles/choco.config -y
  1. Execute post-processing
./windows/setup.bat

Setup the environment for deep-learning on Ubuntu.

  1. build the docker image
./linux/build_image.sh dlenv
  1. run a container attaching the current working directory.
./linux/run_container.sh dlenv project-1

The current working directory is attached into /root/work.

  1. Enter the container.
docker exec -it project-1 bash