Last active
October 16, 2019 19:36
-
-
Save dayvsonlima/184ade736cbe73a98fc1f1a09d8ac44d 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
set number | |
set mouse=a | |
call plug#begin('~/.vim/plugged') | |
Plug 'scrooloose/nerdtree' | |
Plug 'editorconfig/editorconfig-vim' | |
Plug 'kien/ctrlp.vim' | |
Plug 'terryma/vim-multiple-cursors' | |
Plug 'crusoexia/vim-monokai' | |
Plug 'dyng/ctrlsf.vim' | |
call plug#end() | |
let g:NERDTreeDirArrowExpandable = '▸' | |
let g:NERDTreeDirArrowCollapsible = '▾' | |
map <C-b> :NERDTreeToggle<CR> | |
map <C-S-f> :CtrlSF<space> | |
nmap <Leader>r :NERDTreeFocus<cr>R<c-w><c-p> | |
vmap <C-c> "+y | |
syntax on | |
colorscheme monokai |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment