Skip to content

Instantly share code, notes, and snippets.

@dayvsonlima
Last active October 16, 2019 19:36
Show Gist options
  • Save dayvsonlima/184ade736cbe73a98fc1f1a09d8ac44d to your computer and use it in GitHub Desktop.
Save dayvsonlima/184ade736cbe73a98fc1f1a09d8ac44d to your computer and use it in GitHub Desktop.
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