Last active
January 23, 2021 20:13
-
-
Save romanitalian/e4d7a83ffa4cc494a25efe19f8f9992e to your computer and use it in GitHub Desktop.
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
# 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