Michael Grote
1b53da0091
nvim/init.lua scripts/setup_minimal.sh Signed-off-by: Michael Grote <michael.grote@posteo.de>
20 lines
605 B
Bash
Executable file
20 lines
605 B
Bash
Executable file
#!/bin/bash
|
|
# Aufruf: wget https://git.mgrote.net/mg/dotfiles/raw/branch/master/scripts/setup_minimal.sh && bash ./setup_minimal.sh
|
|
cd ~
|
|
sudo apt update && sudo apt install git tmux ripgrep ca-certificates
|
|
#neovim
|
|
mkdir -p ~/.bin
|
|
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz
|
|
sudo tar -C ~/.bin -xzf nvim-linux64.tar.gz
|
|
rm nvim-linux64.tar.gz
|
|
|
|
|
|
git clone https://git.mgrote.net/mg/dotfiles ~/dotfiles
|
|
|
|
ln -s ~/dotfiles/.tmux.conf ~/.tmux.conf
|
|
|
|
ln -s dotfiles/nvim/init.lua .config/nvim/init.lua
|
|
|
|
echo "source ~/dotfiles/.bash_extra" >> ~/.bashrc
|
|
|
|
source ~/.bashrc
|