https://github.com/pit-ray/dotfiles
my dotfiles
https://github.com/pit-ray/dotfiles
Last synced: 8 months ago
JSON representation
my dotfiles
- Host: GitHub
- URL: https://github.com/pit-ray/dotfiles
- Owner: pit-ray
- Created: 2020-09-27T11:36:35.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-06T07:42:21.000Z (over 2 years ago)
- Last Synced: 2025-01-13T00:28:23.023Z (over 1 year ago)
- Language: Vim Script
- Homepage:
- Size: 104 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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.
```sh
cp dotfiles/.vimrc ~
```
## Setup the environment for LaTeX on Windows.
1. Install chocolatey.
```sh
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'))
```
2. Install some utilities
```sh
choco install dotfiles/choco.config -y
```
3. Execute post-processing
```sh
./windows/setup.bat
```
## Setup the environment for deep-learning on Ubuntu.
1. build the docker image
```sh
./linux/build_image.sh dlenv
```
2. run a container attaching the current working directory.
```sh
./linux/run_container.sh dlenv project-1
```
The current working directory is attached into `/root/work`.
3. Enter the container.
```sh
docker exec -it project-1 bash
```