Skip to content

Instantly share code, notes, and snippets.

View TatianaJin's full-sized avatar

Tatiana Jin TatianaJin

  • Kasma
  • Hong Kong
View GitHub Profile
@TatianaJin
TatianaJin / init.vim
Last active August 5, 2022 18:18
Nvim configuration for Rust dev
" Run the shell command to install vim-plug
" sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
" https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
" download the rust-analyzer binary or build from sources (if the binary requires a newer glibc than available locally)
" following the guide https://rust-analyzer.github.io/manual.html#installation
call plug#begin()
Plug 'rust-lang/rust.vim'
Plug 'dense-analysis/ale'