File tree 2 files changed +8
-12
lines changed
2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ This is my personal dotfile.
10
10
11
11
** basic env**
12
12
13
- - [x] [ Miniconda ] ( https://docs.conda.io/en/latest/miniconda.html )
13
+ - [x] [ pixi ] ( https://pixi.sh )
14
14
- [x] [ fish-shell] ( https://fishshell.com )
15
15
- [x] [ neovim] ( https://github.com/neovim/neovim )
16
16
- [x] config based on [ kickstart.nvim] ( https://github.com/nvim-lua/kickstart.nvim )
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
set -euo pipefail
3
3
4
- CONDA=" Miniconda3-latest-Linux-x86_64.sh"
4
+ # pixi
5
+ curl -fsSL https://pixi.sh/install.sh | sh
6
+ export PATH=$PATH :$HOME /.pixi/bin
5
7
6
- # conda
7
- [ -f " /tmp/${CONDA} " ] || wget -O /tmp/${CONDA} " https://repo.anaconda.com/miniconda/${CONDA} "
8
- sudo mkdir -p /opt/conda
9
- sudo chown $( whoami) :$( whoami) /opt/conda
10
- sh /tmp/${CONDA} -b -u -p /opt/conda
11
- /opt/conda/bin/conda init
12
-
13
- # related libraries
14
- /opt/conda/bin/conda install -y -c conda-forge ncurses bat ripgrep eza fd-find starship gh typos
15
- /opt/conda/bin/pip install httpie ruff black ipython
8
+ # conda libraries
9
+ pixi global install bat ripgrep eza fd-find starship gh typos
10
+ # pypi libraries
11
+ pixi global install httpie ruff ipython
16
12
mkdir -p ${HOME} /.config
17
13
cp starship.toml ${HOME} /.config/
You can’t perform that action at this time.
0 commit comments