Created
September 23, 2024 12:29
-
-
Save fmariluis/1b3c844cadbf490868c6daa4b4281f53 to your computer and use it in GitHub Desktop.
Minimalist vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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