Skip to content

Instantly share code, notes, and snippets.

@evaporei
Last active October 19, 2023 21:28
Show Gist options
  • Save evaporei/4ccfad854fc6397cc5f416701aa60e49 to your computer and use it in GitHub Desktop.
Save evaporei/4ccfad854fc6397cc5f416701aa60e49 to your computer and use it in GitHub Desktop.

Arch linux setup

Instalando Rust

paru -S rustup
rustup default stable

Instalando paru

git clone https://aur.archlinux.org/paru.git
cd paru
makepkg -si

Instalando pacotes base

yay -Sy google-chrome fish kitty

Definindo default shell

chsh -s /usr/bin/fish

Instalando Oh My Fish

curl -L https://get.oh-my.fish | fish

Instalando nvm/node.js

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
omf install nvm
nvm install 10 # ou versão do momento

Github

ssh-keygen -t ed25519 -C "[email protected]"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
yay -Sy xclip
xclip -sel clip < ~/.ssh/id_rsa.pub
# paste here: https://github.com/settings/ssh/new

Git

git config --global user.name "Eva Pace"
git config --global user.email "[email protected]" 

Editor de texto

yay -Sy vim neovim

Por hora o resto do tutorial está aqui:

https://github.com/otaviopace/dotfiles#making-neovim-work-on-arch

Racer no nvim

rustup toolchain add nightly
cargo +nightly install racer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment