I have plugged in spaceline to my .vimrc and fixed the bug not showing background colors on spaceline. But I had a problem whenever I entered files on Vim.
This is my .vimrc configure below
set nocompatible " be iMproved, requiredfiletype off " required" set the runtime path to include Vundle and initializeset rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()" alternatively, pass a path where Vundle should install plugins"call vundle#begin('~/some/path/here')" let Vundle manage Vundle, requiredPlugin 'VundleVim/Vundle.vim'" The following are examples of different formats supported." Keep Plugin commands between vundle#begin/end." plugin on GitHub repoPlugin 'tpope/vim-fugitive'" plugin from http://vim-scripts.org/vim/scripts.html" Plugin 'L9'" Git plugin not hosted on GitHubPlugin 'git://git.wincent.com/command-t.git'" git repos on your local machine (i.e. when working on your own plugin)" The sparkup vim script is in a subdirectory of this repo called vim." Pass the path to set the runtimepath properly.Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}" Install L9 and avoid a Naming conflict if you've already installed a" different version somewhere else." Plugin 'ascenator/L9', {'name': 'newL9'}Plugin 'vim-auto-save'" users can visually browse complex directory hierarchies, quickly open filesPlugin 'preservim/nerdtree'" vim-moveBundle 'matze/vim-move'" Plugin 'junegunn/fzf', { 'do': { -> fzf#install() } }Plugin 'junegunn/fzf.vim'" Vim spliting https://github.com/qpkorr/vim-bufkillPlugin 'qpkorr/vim-bufkill'Plugin 'ryanoasis/vim-devicons'Plugin 'glepnir/spaceline.vim'" All of your Plugins must be added before the following linecall vundle#end() " requiredfiletype plugin indent on " required" To ignore plugin indent changes, instead use:"filetype plugin on"" Brief help" :PluginList - lists configured plugins" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate" :PluginSearch foo - searches for foo; append `!` to refresh local cache" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal"" see :h vundle for more details or wiki for FAQ" Put your non-Plugin stuff after this linelet g:auto_save = 1 " enable AutoSave on Vim startup" automate nerdtreeautocmd vimenter * NERDTreeset noswapfileset runtimepath+=~/workstation/vim/spaceline.vimset runtimepath+=~/.cache/vim/dein/repos/github.com/ryanoasis/vim-deviconsset laststatus=2set termguicolorssyntax on
It shows "Press ENTER or type command to continue" whenever entering files. This message makes me push enter everytime I enter files. I want to silent this message but I haven't found the solution yet. Any help will be helpful. Thank you in advance.