Can't get plugin for Vim to work with Vundle. What am I doing wrong?

Multi tool use
I am trying to install this plugin here for my Vim on my Centos 7 laptop. The instructions I followed to install the plugin manage Vundle are from the Github Vundle page here and then proceeded to follow instructions for the plugin installation in it's github page as well.
This is what my .vimrc
file currently looks like which is practically taken from the Github Vundle page.
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" " alternatively, pass a path where Vundle should install plugins
" "call vundle#begin('~/some/path/here')
"
" " let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
"
" " The following are examples of different formats supported.
" " Keep Plugin commands between vundle#begin/end.
" " plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" " plugin from http://vim-scripts.org/vim/scripts.html
" " Plugin 'L9'
" " Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'
" " git repos on your local machine (i.e. when working on your own plugin)
"Plugin 'file:///home/gmarik/path/to/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'}
"
" " All of your Plugins must be added before the following line
"Adam - my plugins
Plugin 'itchyny/lightline.vim' "download from - https://github.com/itchyny/lightline.vim
call vundle#end() " required
filetype 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 line
"-----------------------------------------------------------------------------------------
"show numbers on lines
"set number
".vimrc" 54L, 2126C 52,1 90%
I save and close the file. Open vim again and run :PluginInstall
and it seems to be installing as I get the result below shown in this
I then close vim and terminal, reopen everything but my status line still looks like this.
centos vim
add a comment |
I am trying to install this plugin here for my Vim on my Centos 7 laptop. The instructions I followed to install the plugin manage Vundle are from the Github Vundle page here and then proceeded to follow instructions for the plugin installation in it's github page as well.
This is what my .vimrc
file currently looks like which is practically taken from the Github Vundle page.
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" " alternatively, pass a path where Vundle should install plugins
" "call vundle#begin('~/some/path/here')
"
" " let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
"
" " The following are examples of different formats supported.
" " Keep Plugin commands between vundle#begin/end.
" " plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" " plugin from http://vim-scripts.org/vim/scripts.html
" " Plugin 'L9'
" " Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'
" " git repos on your local machine (i.e. when working on your own plugin)
"Plugin 'file:///home/gmarik/path/to/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'}
"
" " All of your Plugins must be added before the following line
"Adam - my plugins
Plugin 'itchyny/lightline.vim' "download from - https://github.com/itchyny/lightline.vim
call vundle#end() " required
filetype 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 line
"-----------------------------------------------------------------------------------------
"show numbers on lines
"set number
".vimrc" 54L, 2126C 52,1 90%
I save and close the file. Open vim again and run :PluginInstall
and it seems to be installing as I get the result below shown in this
I then close vim and terminal, reopen everything but my status line still looks like this.
centos vim
Looks like you missed settinglaststatus
.
– muru
Dec 17 at 3:19
add a comment |
I am trying to install this plugin here for my Vim on my Centos 7 laptop. The instructions I followed to install the plugin manage Vundle are from the Github Vundle page here and then proceeded to follow instructions for the plugin installation in it's github page as well.
This is what my .vimrc
file currently looks like which is practically taken from the Github Vundle page.
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" " alternatively, pass a path where Vundle should install plugins
" "call vundle#begin('~/some/path/here')
"
" " let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
"
" " The following are examples of different formats supported.
" " Keep Plugin commands between vundle#begin/end.
" " plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" " plugin from http://vim-scripts.org/vim/scripts.html
" " Plugin 'L9'
" " Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'
" " git repos on your local machine (i.e. when working on your own plugin)
"Plugin 'file:///home/gmarik/path/to/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'}
"
" " All of your Plugins must be added before the following line
"Adam - my plugins
Plugin 'itchyny/lightline.vim' "download from - https://github.com/itchyny/lightline.vim
call vundle#end() " required
filetype 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 line
"-----------------------------------------------------------------------------------------
"show numbers on lines
"set number
".vimrc" 54L, 2126C 52,1 90%
I save and close the file. Open vim again and run :PluginInstall
and it seems to be installing as I get the result below shown in this
I then close vim and terminal, reopen everything but my status line still looks like this.
centos vim
I am trying to install this plugin here for my Vim on my Centos 7 laptop. The instructions I followed to install the plugin manage Vundle are from the Github Vundle page here and then proceeded to follow instructions for the plugin installation in it's github page as well.
This is what my .vimrc
file currently looks like which is practically taken from the Github Vundle page.
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" " alternatively, pass a path where Vundle should install plugins
" "call vundle#begin('~/some/path/here')
"
" " let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
"
" " The following are examples of different formats supported.
" " Keep Plugin commands between vundle#begin/end.
" " plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" " plugin from http://vim-scripts.org/vim/scripts.html
" " Plugin 'L9'
" " Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'
" " git repos on your local machine (i.e. when working on your own plugin)
"Plugin 'file:///home/gmarik/path/to/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'}
"
" " All of your Plugins must be added before the following line
"Adam - my plugins
Plugin 'itchyny/lightline.vim' "download from - https://github.com/itchyny/lightline.vim
call vundle#end() " required
filetype 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 line
"-----------------------------------------------------------------------------------------
"show numbers on lines
"set number
".vimrc" 54L, 2126C 52,1 90%
I save and close the file. Open vim again and run :PluginInstall
and it seems to be installing as I get the result below shown in this
I then close vim and terminal, reopen everything but my status line still looks like this.
centos vim
centos vim
edited Dec 17 at 9:21


SouravGhosh
455311
455311
asked Dec 17 at 1:04
AMVPlusPlus
204
204
Looks like you missed settinglaststatus
.
– muru
Dec 17 at 3:19
add a comment |
Looks like you missed settinglaststatus
.
– muru
Dec 17 at 3:19
Looks like you missed setting
laststatus
.– muru
Dec 17 at 3:19
Looks like you missed setting
laststatus
.– muru
Dec 17 at 3:19
add a comment |
1 Answer
1
active
oldest
votes
New answer:
Maybe it is a configuration problem of the plugin, try adding set laststatus=2
to your .vimrc
- for details see: https://github.com/itchyny/lightline.vim#introduction
Old answer:
it seems that you are missing call vundle#begin()
:
Check example in the https://github.com/VundleVim/Vundle.vim#quick-start
Keep Plugin commands between vundle#begin/end.
i apologize, i did not notice i only pasted a section of my .vimrc file, I updated the code to show the entire file and it is in there.
– AMVPlusPlus
Dec 17 at 1:51
The issue is with the status bar not looking as per plugin? It seems all is working but needs a bit of configuration - answer updated.
– Evolter
Dec 17 at 3:15
Solved. I was under the assumption that I did not need to put this in the line "set laststatus = 2" since my status line was not entirely blank like the document shows so did not bother to try it but it was the solution to my problem. Thank you.
– AMVPlusPlus
yesterday
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f489390%2fcant-get-plugin-for-vim-to-work-with-vundle-what-am-i-doing-wrong%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
New answer:
Maybe it is a configuration problem of the plugin, try adding set laststatus=2
to your .vimrc
- for details see: https://github.com/itchyny/lightline.vim#introduction
Old answer:
it seems that you are missing call vundle#begin()
:
Check example in the https://github.com/VundleVim/Vundle.vim#quick-start
Keep Plugin commands between vundle#begin/end.
i apologize, i did not notice i only pasted a section of my .vimrc file, I updated the code to show the entire file and it is in there.
– AMVPlusPlus
Dec 17 at 1:51
The issue is with the status bar not looking as per plugin? It seems all is working but needs a bit of configuration - answer updated.
– Evolter
Dec 17 at 3:15
Solved. I was under the assumption that I did not need to put this in the line "set laststatus = 2" since my status line was not entirely blank like the document shows so did not bother to try it but it was the solution to my problem. Thank you.
– AMVPlusPlus
yesterday
add a comment |
New answer:
Maybe it is a configuration problem of the plugin, try adding set laststatus=2
to your .vimrc
- for details see: https://github.com/itchyny/lightline.vim#introduction
Old answer:
it seems that you are missing call vundle#begin()
:
Check example in the https://github.com/VundleVim/Vundle.vim#quick-start
Keep Plugin commands between vundle#begin/end.
i apologize, i did not notice i only pasted a section of my .vimrc file, I updated the code to show the entire file and it is in there.
– AMVPlusPlus
Dec 17 at 1:51
The issue is with the status bar not looking as per plugin? It seems all is working but needs a bit of configuration - answer updated.
– Evolter
Dec 17 at 3:15
Solved. I was under the assumption that I did not need to put this in the line "set laststatus = 2" since my status line was not entirely blank like the document shows so did not bother to try it but it was the solution to my problem. Thank you.
– AMVPlusPlus
yesterday
add a comment |
New answer:
Maybe it is a configuration problem of the plugin, try adding set laststatus=2
to your .vimrc
- for details see: https://github.com/itchyny/lightline.vim#introduction
Old answer:
it seems that you are missing call vundle#begin()
:
Check example in the https://github.com/VundleVim/Vundle.vim#quick-start
Keep Plugin commands between vundle#begin/end.
New answer:
Maybe it is a configuration problem of the plugin, try adding set laststatus=2
to your .vimrc
- for details see: https://github.com/itchyny/lightline.vim#introduction
Old answer:
it seems that you are missing call vundle#begin()
:
Check example in the https://github.com/VundleVim/Vundle.vim#quick-start
Keep Plugin commands between vundle#begin/end.
edited Dec 17 at 3:14
answered Dec 17 at 1:35
Evolter
1614
1614
i apologize, i did not notice i only pasted a section of my .vimrc file, I updated the code to show the entire file and it is in there.
– AMVPlusPlus
Dec 17 at 1:51
The issue is with the status bar not looking as per plugin? It seems all is working but needs a bit of configuration - answer updated.
– Evolter
Dec 17 at 3:15
Solved. I was under the assumption that I did not need to put this in the line "set laststatus = 2" since my status line was not entirely blank like the document shows so did not bother to try it but it was the solution to my problem. Thank you.
– AMVPlusPlus
yesterday
add a comment |
i apologize, i did not notice i only pasted a section of my .vimrc file, I updated the code to show the entire file and it is in there.
– AMVPlusPlus
Dec 17 at 1:51
The issue is with the status bar not looking as per plugin? It seems all is working but needs a bit of configuration - answer updated.
– Evolter
Dec 17 at 3:15
Solved. I was under the assumption that I did not need to put this in the line "set laststatus = 2" since my status line was not entirely blank like the document shows so did not bother to try it but it was the solution to my problem. Thank you.
– AMVPlusPlus
yesterday
i apologize, i did not notice i only pasted a section of my .vimrc file, I updated the code to show the entire file and it is in there.
– AMVPlusPlus
Dec 17 at 1:51
i apologize, i did not notice i only pasted a section of my .vimrc file, I updated the code to show the entire file and it is in there.
– AMVPlusPlus
Dec 17 at 1:51
The issue is with the status bar not looking as per plugin? It seems all is working but needs a bit of configuration - answer updated.
– Evolter
Dec 17 at 3:15
The issue is with the status bar not looking as per plugin? It seems all is working but needs a bit of configuration - answer updated.
– Evolter
Dec 17 at 3:15
Solved. I was under the assumption that I did not need to put this in the line "set laststatus = 2" since my status line was not entirely blank like the document shows so did not bother to try it but it was the solution to my problem. Thank you.
– AMVPlusPlus
yesterday
Solved. I was under the assumption that I did not need to put this in the line "set laststatus = 2" since my status line was not entirely blank like the document shows so did not bother to try it but it was the solution to my problem. Thank you.
– AMVPlusPlus
yesterday
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f489390%2fcant-get-plugin-for-vim-to-work-with-vundle-what-am-i-doing-wrong%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Eqb,08 j9x G,hLkeG,cjX6vmnpXTLGCrJYl8ezShVlI9vCTKC7F1uQUZpOwwckuwgQUFCKGZwxaBBH
Looks like you missed setting
laststatus
.– muru
Dec 17 at 3:19