Skip to content

Instantly share code, notes, and snippets.

@fmariluis
Created September 23, 2024 12:29
Show Gist options
  • Save fmariluis/1b3c844cadbf490868c6daa4b4281f53 to your computer and use it in GitHub Desktop.
Save fmariluis/1b3c844cadbf490868c6daa4b4281f53 to your computer and use it in GitHub Desktop.
Minimalist vimrc
" Minimalist vimrc
" Install vim-plug first: https://github.com/junegunn/vim-plug?tab=readme-ov-file#installation
call plug#begin()
" Plugins
Plug 'tpope/vim-sensible'
Plug 'tpope/vim-vinegar'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-surround'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
call plug#end()
" Keys
inoremap jj <Esc>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment