vim-css-colors plugin added
This commit is contained in:
parent
4c855683c0
commit
da1f6c3b6b
15
vimrc
15
vimrc
|
@ -7,11 +7,9 @@ call vundle#begin()
|
||||||
" alternatively, pass a path where Vundle should install plugins
|
" alternatively, pass a path where Vundle should install plugins
|
||||||
"call vundle#begin('~/some/path/here')
|
"call vundle#begin('~/some/path/here')
|
||||||
|
|
||||||
|
|
||||||
" let Vundle manage Vundle, required
|
" let Vundle manage Vundle, required
|
||||||
Plugin 'VundleVim/Vundle.vim'
|
Plugin 'VundleVim/Vundle.vim'
|
||||||
|
|
||||||
|
|
||||||
" The following are examples of different formats supported.
|
" The following are examples of different formats supported.
|
||||||
" Keep Plugin commands between vundle#begin/end.
|
" Keep Plugin commands between vundle#begin/end.
|
||||||
" plugin on GitHub repo
|
" plugin on GitHub repo
|
||||||
|
@ -27,22 +25,18 @@ Plugin 'tpope/vim-fugitive'
|
||||||
" The sparkup vim script is in a subdirectory of this repo called vim.
|
" The sparkup vim script is in a subdirectory of this repo called vim.
|
||||||
" Pass the path to set the runtimepath properly.
|
" Pass the path to set the runtimepath properly.
|
||||||
|
|
||||||
|
|
||||||
" Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
|
" Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
|
||||||
" Install L9 and avoid a Naming conflict if you've already installed a
|
" Install L9 and avoid a Naming conflict if you've already installed a
|
||||||
" different version somewhere else.
|
" different version somewhere else.
|
||||||
" Plugin 'ascenator/L9', {'name': 'newL9'}
|
" Plugin 'ascenator/L9', {'name': 'newL9'}
|
||||||
|
|
||||||
|
|
||||||
" Nerdtree and nerdtree-git
|
" Nerdtree and nerdtree-git
|
||||||
Plugin 'scrooloose/nerdtree.git'
|
Plugin 'scrooloose/nerdtree.git'
|
||||||
Plugin 'Xuyuanp/nerdtree-git-plugin'
|
Plugin 'Xuyuanp/nerdtree-git-plugin'
|
||||||
|
|
||||||
|
|
||||||
"css3-syntax
|
"css3-syntax
|
||||||
Plugin 'hail2u/vim-css3-syntax.git'
|
Plugin 'hail2u/vim-css3-syntax.git'
|
||||||
|
|
||||||
|
|
||||||
"scss-syntax
|
"scss-syntax
|
||||||
Plugin 'cakebaker/scss-syntax.vim'
|
Plugin 'cakebaker/scss-syntax.vim'
|
||||||
|
|
||||||
|
@ -67,6 +61,9 @@ Plugin 'ctrlpvim/ctrlp.vim'
|
||||||
" Obsession
|
" Obsession
|
||||||
Plugin 'tpope/vim-obsession'
|
Plugin 'tpope/vim-obsession'
|
||||||
|
|
||||||
|
" vim-css-color
|
||||||
|
Plugin 'ap/vim-css-color'
|
||||||
|
|
||||||
" All of your Plugins must be added before the following line
|
" All of your Plugins must be added before the following line
|
||||||
call vundle#end() " required
|
call vundle#end() " required
|
||||||
filetype plugin indent on " required
|
filetype plugin indent on " required
|
||||||
|
@ -140,7 +137,11 @@ set statusline+=%(%l,%c%V\ %=\ %P%) " line number,virtual line numbe
|
||||||
" always show statusline
|
" always show statusline
|
||||||
set laststatus=2
|
set laststatus=2
|
||||||
|
|
||||||
|
" set status to change the status line based on mode
|
||||||
|
if version >= 700
|
||||||
|
au InsertEnter * hi StatusLine term=reverse ctermbg=5 gui=undercurl guisp=Magenta
|
||||||
|
au InsertLeave * hi StatusLine term=reverse ctermfg=0 ctermbg=2 gui=bold,reverse
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
" set a right margin and it's colour
|
" set a right margin and it's colour
|
||||||
|
|
Loading…
Reference in New Issue