Skip to content

Instantly share code, notes, and snippets.

@sjdonado
Last active December 14, 2019 22:10
Show Gist options
  • Save sjdonado/632fc587cf30635fceb7f5c5e4948ef9 to your computer and use it in GitHub Desktop.
Save sjdonado/632fc587cf30635fceb7f5c5e4948ef9 to your computer and use it in GitHub Desktop.
My vim config
git config --global diff.tool vimdiff
git config --global difftool.prompt false
--- ~/.vimrc ---
syntax enable
colorscheme monokai
set number
set incsearch
set hlsearch
set laststatus=2
call plug#begin('~/.vim/plugged')
" A light and configurable statusline/tabline plugin for Vim.
Plug 'itchyny/lightline.vim'
" A Vim plugin which shows a git diff in the gutter (sign column) and stages/undoes hunks.
Plug 'airblade/vim-gitgutter'
call plug#end()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment