Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nixon-voxell/dev_environment
Minimal nu script to setup and update development environment in Nushell.
https://github.com/nixon-voxell/dev_environment
Last synced: about 2 months ago
JSON representation
Minimal nu script to setup and update development environment in Nushell.
- Host: GitHub
- URL: https://github.com/nixon-voxell/dev_environment
- Owner: nixon-voxell
- Created: 2023-11-06T13:28:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-10T08:35:38.000Z (about 2 months ago)
- Last Synced: 2024-11-10T09:27:26.609Z (about 2 months ago)
- Language: Python
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dev Environment
Minimal nu script to setup and update development environment in [Nushell](https://www.nushell.sh/).
## How to use?
1. [Install Nushell](https://www.nushell.sh/book/installation.html).
2. In Nushell, run `nu setup.nu`.## Steps
### Step `#1`: Check package installations.
This script requires [`rustup`](https://www.rust-lang.org/tools/install) and `cargo` to be installed.
### Step `#2`: Install essential 🦀 Rust tools.
These are the rust tools that will be installed during the setup:
```nu
â•â”€â”€â”€â”¬â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â•®
│ 0 │ eza │
│ 1 │ fd-find │
│ 2 │ mprocs │
│ 3 │ git-graph │
│ 4 │ git-delta │
│ 5 │ bacon │
╰───┴───────────╯
```### Step `#3`: Setup helix.
[Helix](https://helix-editor.com/) will be installed/updated.
### Step `#4`: Setup configurations.
Currently, Windows is the only system host that is being supported for this step.
Included configurations:
1. Terminal
2. Helix
3. Git### Step `#5`: Setup development directories.
A `develop` directory will be created outside of this directory with these subfolders:
```nu
..\develop
├── notes
├── other
├── projects
└── temp
```