Skip to content
Matheus Vieira edited this page May 28, 2022 · 1 revision

call plug#begin(expand('~/.config/nvim/plugged'))

Plug 'Shougo/denite.nvim' Plug 'Shougo/neobundle.vim' Plug 'ryanoasis/vim-devicons' Plug 'tiagofumo/vim-nerdtree-syntax-highlight'

call plug#end()

" Note: Skip initialization for vim-tiny or vim-small. if 0 | endif

if &compatible set nocompatible " Be iMproved endif

" Required: set runtimepath+=~/.vim/bundle/neobundle.vim/

" Required: call neobundle#begin(expand('~/.vim/bundle/'))

" Let NeoBundle manage NeoBundle " Required: NeoBundleFetch 'Shougo/neobundle.vim' NeoBundleFetch 'Shougo/denite.nvim' NeoBundle 'tiagofumo/vim-nerdtree-syntax-highlight' NeoBundle 'ryanoasis/vim-devicons' " My Bundles here: " Refer to |:NeoBundle-examples|. " Note: You don't set neobundle setting in .gvimrc!

call neobundle#end()

" Required: filetype plugin indent on

" If there are uninstalled bundles found on startup, " this will conveniently prompt you to install them. NeoBundleCheck

set encoding=utf8

set guifont=Hack Italic\ Nerd\ Font\ Complete\ 11

let g:airline_powerline_fonts = 1