mirror of
https://github.com/halfdan/dotfiles.git
synced 2025-04-28 05:15:39 +00:00
Add ohmyzsh plugin, change installation of pyenv
This commit is contained in:
parent
81e282a975
commit
c20a84ff16
1
.zshrc
1
.zshrc
@ -3,7 +3,6 @@ ZSH_THEME="robbyrussell"
|
|||||||
|
|
||||||
# Plugins
|
# Plugins
|
||||||
plugins=(
|
plugins=(
|
||||||
poetry
|
|
||||||
git
|
git
|
||||||
zsh-autosuggestions
|
zsh-autosuggestions
|
||||||
)
|
)
|
||||||
|
2
apt.sh
2
apt.sh
@ -8,7 +8,7 @@ apt update
|
|||||||
# Upgrade already installed packages
|
# Upgrade already installed packages
|
||||||
apt upgrade
|
apt upgrade
|
||||||
|
|
||||||
# Install packages
|
# Install packages (this works on Ubuntu 20.04+)
|
||||||
apt install -y \
|
apt install -y \
|
||||||
jq \
|
jq \
|
||||||
neovim \
|
neovim \
|
||||||
|
@ -3,9 +3,15 @@
|
|||||||
# Install oh-my-zsh
|
# Install oh-my-zsh
|
||||||
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
||||||
|
|
||||||
|
# Install zsh-autosuggestions plugin
|
||||||
|
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
|
||||||
|
|
||||||
# Install asdf-vm
|
# Install asdf-vm
|
||||||
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.8.0
|
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.8.0
|
||||||
|
|
||||||
|
# Install pyenv
|
||||||
|
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
|
||||||
|
|
||||||
# Install starship
|
# Install starship
|
||||||
sh -c "$(curl -fsSL https://starship.rs/install.sh)"
|
sh -c "$(curl -fsSL https://starship.rs/install.sh)"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user