Skip to content

Instantly share code, notes, and snippets.

@bakudas
Last active December 22, 2022 02:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bakudas/1e5a631fcaf85460f27aeb5e0f1a0f69 to your computer and use it in GitHub Desktop.
Save bakudas/1e5a631fcaf85460f27aeb5e0f1a0f69 to your computer and use it in GitHub Desktop.
ruby vim plugins to vim-plug
call plug#begin()
Plug 'junegunn/fzf.vim'
Plug 'preservim/nerdtree'
Plug 'tpope/vim-rails'
Plug 'tpope/vim-fugitive'
Plug 'vim-ruby/vim-ruby'
Plug 'tpope/vim-bundler'
Plug 'tpope/vim-cucumber'
Plug 'skalnik/vim-vroom'
Plug 'tpope/vim-endwise'
Plug 'ervandew/supertab'
Plug 'kien/ctrlp.vim/'
Plug 'Raimondi/delimitMate'
Plug 'ObserverOfTime/coloresque.vim'
Plug 'TaDaa/vimade'
Plug 'severin-lemaignan/vim-minimap'
Plug 'majutsushi/tagbar'
Plug 'tpope/vim-surround'
Plug 'scrooloose/syntastic'
Plug 'jiangmiao/auto-pairs'
Plug 'morhetz/gruvbox'
Plug 'valloric/youcompleteme'
Plug 'morhetz/gruvbox'
autocmd VimEnter * NERDTree | wincmd p
autocmd BufEnter * if tabpagenr('$') == 1 && winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif
autocmd BufEnter * if winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif
call plug#end()
set mouse=a
map <c-t> :bel term ++rows=12<cr>
" configurações básicas do Vim
set number
set linebreak
set showbreak=+++
set textwidth=100
set showmatch
set hlsearch
set smartcase
set ignorecase
set incsearch
set autoindent
set shiftwidth=2
set smartindent
set smarttab
set softtabstop=2
set undolevels=1000
set background=dark
set backspace=indent,eol,start
colorscheme gruvbox
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment