- vim-plug (https://github.com/junegunn/vim-plug)
- powerline (pip install powerline)
- Copy
init.viminto your vim/neovim config (~/.vimrcor~/.config/nvim/init.vim). - Run
:PlugInstallcommand. - Reload.
init.vim into your vim/neovim config (~/.vimrc or ~/.config/nvim/init.vim).:PlugInstall command.| " Directorio de plugins | |
| call plug#begin('~/.local/share/nvim/plugged') | |
| Plug 'mhartington/oceanic-next' | |
| Plug 'scrooloose/nerdtree' | |
| Plug 'Xuyuanp/nerdtree-git-plugin' | |
| Plug 'vim-airline/vim-airline' | |
| Plug 'vim-airline/vim-airline-themes' | |
| Plug 'tpope/vim-fugitive' | |
| Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } | |
| call plug#end() | |
| if (has("termguicolors")) | |
| set termguicolors | |
| endif | |
| " Theme | |
| syntax enable | |
| colorscheme OceanicNext | |
| set number | |
| set tabstop=2 shiftwidth=2 expandtab | |
| " Mappings | |
| map <F2> :NERDTreeToggle<CR> | |
| map <F8> :make<CR> | |
| " Autoloads | |
| autocmd VimEnter * AirlineTheme luna | |
| let g:deoplete#enable_at_startup = 1 |