jakeify packages, fix path for go during bootstrapping, add neo-tree config
This commit is contained in:
parent
b90f81ee07
commit
f678eff8c2
2 changed files with 22 additions and 6 deletions
12
.config/nvim/lua/plugins/neo-tree.lua
Normal file
12
.config/nvim/lua/plugins/neo-tree.lua
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
return {
|
||||||
|
{
|
||||||
|
"nvim-neo-tree/neo-tree.nvim",
|
||||||
|
opts = {
|
||||||
|
filesystem = {
|
||||||
|
filtered_items = {
|
||||||
|
hide_dotfiles = false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
16
bootstrap.sh
16
bootstrap.sh
|
@ -3,28 +3,32 @@
|
||||||
# install packages
|
# install packages
|
||||||
sudo apt install \
|
sudo apt install \
|
||||||
apt-transport-https \
|
apt-transport-https \
|
||||||
fd-find \
|
|
||||||
fontconfig \
|
|
||||||
python3-neovim \
|
|
||||||
python3-pynvim \
|
|
||||||
ripgrep \
|
|
||||||
curl \
|
curl \
|
||||||
|
fd-find \
|
||||||
firefox \
|
firefox \
|
||||||
|
fontconfig \
|
||||||
golang-1.22 \
|
golang-1.22 \
|
||||||
gpg \
|
gpg \
|
||||||
|
htop \
|
||||||
imv \
|
imv \
|
||||||
inxi \
|
inxi \
|
||||||
jq \
|
jq \
|
||||||
kitty \
|
kitty \
|
||||||
|
mpv \
|
||||||
|
ncdu \
|
||||||
neovim \
|
neovim \
|
||||||
pipewire-alsa \
|
pipewire-alsa \
|
||||||
pipewire-audio \
|
pipewire-audio \
|
||||||
pipewire-pulse sudo \
|
pipewire-pulse sudo \
|
||||||
|
python3-neovim \
|
||||||
|
python3-pynvim \
|
||||||
|
ripgrep \
|
||||||
sway \
|
sway \
|
||||||
swaylock \
|
swaylock \
|
||||||
tmux \
|
tmux \
|
||||||
unzip \
|
unzip \
|
||||||
waybar \
|
waybar \
|
||||||
|
wget \
|
||||||
wireplumber \
|
wireplumber \
|
||||||
wl-clipboard \
|
wl-clipboard \
|
||||||
yq
|
yq
|
||||||
|
@ -36,7 +40,7 @@ wget -qO- https://github.com/ryanoasis/nerd-fonts/releases/download/v3.1.1/DejaV
|
||||||
fc-cache -fv
|
fc-cache -fv
|
||||||
|
|
||||||
# install lazygit
|
# install lazygit
|
||||||
go install github.com/jesseduffield/lazygit@latest
|
/usr/lib/go-1.22/bin/go install github.com/jesseduffield/lazygit@latest
|
||||||
|
|
||||||
# setup moolticute
|
# setup moolticute
|
||||||
echo 'deb http://download.opensuse.org/repositories/home:/fawz:/mooltipass/Debian_Testing/ /' | sudo tee /etc/apt/sources.list.d/home:fawz:mooltipass.list
|
echo 'deb http://download.opensuse.org/repositories/home:/fawz:/mooltipass/Debian_Testing/ /' | sudo tee /etc/apt/sources.list.d/home:fawz:mooltipass.list
|
||||||
|
|
Loading…
Reference in a new issue