You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a rather minimal plugin setup currently, but for some reason, NERDTree and Airline-vim don't load until I run PlugInstall. Please note that Jedi-vim is loading before running PlugInstall. I am a little new to Vim. Any help is appreciated.
(Also, I don't know what the block of code at the beginning of my .gvimrc file is doing. I got it from here.)
" Fisa-vim-config" http://fisadev.github.io/fisa-vim-config/" version: 8.3.1" ============================================================================" Vim-plug initialization" Avoid modify this section, unless you are very sure of what you are doinglet vim_plug_just_installed =0let vim_plug_path =expand('~/.vim/autoload/plug.vim')
if!filereadable(vim_plug_path)
echo"Installing Vim-plug..."echo""silent!mkdir-p~/.vim/autoloadsilent!curl -fLo ~/.vim/autoload/plug.vim--create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vimlet vim_plug_just_installed =1endif" manually load vim-plug the first timeif vim_plug_just_installed
:execute'source '.fnameescape(vim_plug_path)
endif" Obscure hacks done, you can now modify the rest of the .vimrc as you wish :)" ============================================================================" Active plugins" You can disable or add new ones here:" this needs to be here, so vim-plug knows we are declaring the plugins we" want to usecallplug#begin('~/.vim/plugged')
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'davidhalter/jedi-vim'
Plug 'scrooloose/nerdtree'callplug#end()
colorscheme desert"nice colorscheme (for now)setnumber"line numberssetguioptions-=m"menu barsetguioptions-=T"toolbarsetguioptions-=r"right-hand scrollbarsetguioptions-=L"left-hand scrollbar" set a leader keylet mapleader =","" split navigationsnnoremap<leader>j <C-W><C-J>nnoremap<leader>k <C-W><C-K>nnoremap<leader>l <C-W><C-L>nnoremap<leader>h <C-W><C-H>" make splits below and rightsetsplitbelowsetsplitrightsetnocompatiblesettabstop=4softtabstop=4shiftwidth=4textwidth=119expandtabautoindentsetencoding=utf-8setlaststatus=2autocmdvimenter* NERDTree
The text was updated successfully, but these errors were encountered:
I have a rather minimal plugin setup currently, but for some reason, NERDTree and Airline-vim don't load until I run
PlugInstall
. Please note that Jedi-vim is loading before runningPlugInstall
. I am a little new to Vim. Any help is appreciated.(Also, I don't know what the block of code at the beginning of my
.gvimrc
file is doing. I got it from here.)Contents of
:version
:Contents of
.gvimrc
:The text was updated successfully, but these errors were encountered: