Last active
December 14, 2019 22:10
-
-
Save sjdonado/632fc587cf30635fceb7f5c5e4948ef9 to your computer and use it in GitHub Desktop.
My vim config
This file contains 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
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