-
Notifications
You must be signed in to change notification settings - Fork 267
exemple.vim
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
This Wiki and the Readme contain a lot of information, please take your time to read the information.
If you run into any trouble, please start by looking in the FAQ.
There are very detailed Changelog and Release changes available.
Be sure to read the Contributing Guide before opening a pull request to Nerd Fonts.
-
Vote for VimDevIcons on vim.org