Skip to content

Instantly share code, notes, and snippets.

@romanitalian
Last active January 23, 2021 20:13
Show Gist options
  • Save romanitalian/e4d7a83ffa4cc494a25efe19f8f9992e to your computer and use it in GitHub Desktop.
Save romanitalian/e4d7a83ffa4cc494a25efe19f8f9992e to your computer and use it in GitHub Desktop.
# touch ~/.vimrc
# :w
# :source ~/.vimrc ---- or ====> :so %
# :PlugInstall
call plug#begin('~/.vim/plugged')
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'morhetz/gruvbox'
Plug 'jiangmiao/auto-pairs'
Plug 'tpope/vim-fugitive'
Plug 'airblade/vim-gitgutter'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'easymotion/vim-easymotion'
call plug#end()
set number
set expandtab
set tabstop=2
set hlsearch
set incsearch
syntax on
let g:mapleader=','
colorscheme gruvbox
set background=dark
"mapping
map <C-n> :NERDTreeToggle<CR>
map <Leader> <Plug>(easymotion-prefix)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment