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
|
||||
sudo apt install \
|
||||
apt-transport-https \
|
||||
fd-find \
|
||||
fontconfig \
|
||||
python3-neovim \
|
||||
python3-pynvim \
|
||||
ripgrep \
|
||||
curl \
|
||||
fd-find \
|
||||
firefox \
|
||||
fontconfig \
|
||||
golang-1.22 \
|
||||
gpg \
|
||||
htop \
|
||||
imv \
|
||||
inxi \
|
||||
jq \
|
||||
kitty \
|
||||
mpv \
|
||||
ncdu \
|
||||
neovim \
|
||||
pipewire-alsa \
|
||||
pipewire-audio \
|
||||
pipewire-pulse sudo \
|
||||
python3-neovim \
|
||||
python3-pynvim \
|
||||
ripgrep \
|
||||
sway \
|
||||
swaylock \
|
||||
tmux \
|
||||
unzip \
|
||||
waybar \
|
||||
wget \
|
||||
wireplumber \
|
||||
wl-clipboard \
|
||||
yq
|
||||
|
@ -36,7 +40,7 @@ wget -qO- https://github.com/ryanoasis/nerd-fonts/releases/download/v3.1.1/DejaV
|
|||
fc-cache -fv
|
||||
|
||||
# install lazygit
|
||||
go install github.com/jesseduffield/lazygit@latest
|
||||
/usr/lib/go-1.22/bin/go install github.com/jesseduffield/lazygit@latest
|
||||
|
||||
# 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
|
||||
|
|
Loading…
Reference in a new issue