Skip to content

Instantly share code, notes, and snippets.

View BrunaNayara's full-sized avatar
🍉
Eat more fruits and stay hydrated

Bruna Moreira BrunaNayara

🍉
Eat more fruits and stay hydrated
View GitHub Profile
@BrunaNayara
BrunaNayara / how-to-vim.md
Last active June 26, 2023 13:31
Vim presentation

How to vim

Basics and not so basics for future vimers

Why vim?

  • Not the easiest
  • But always there
  • Good for small things
@BrunaNayara
BrunaNayara / .vimrc
Last active September 5, 2023 14:05
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required