mirror of
https://github.com/itchyny/lightline.vim.git
synced 2025-11-16 07:23:49 -05:00
add README.md
This commit is contained in:
26
README.md
Normal file
26
README.md
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
# A light and configurable statusline for Vim
|
||||||
|
|
||||||
|
## Author
|
||||||
|
itchyny (https://github.com/itchyny)
|
||||||
|
|
||||||
|
## License
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
### Manually
|
||||||
|
1. Put all files under $VIM/.
|
||||||
|
|
||||||
|
### Vundle (https://github.com/gmarik/vundle)
|
||||||
|
1. Add the following configuration to your .vimrc.
|
||||||
|
|
||||||
|
Bundle 'itchyny/lightline.vim'
|
||||||
|
|
||||||
|
2. Install with `:BundleInstall`.
|
||||||
|
|
||||||
|
### NeoBundle (https://github.com/Shougo/neobundle.vim)
|
||||||
|
1. Add the following configuration to your .vimrc.
|
||||||
|
|
||||||
|
NeoBundle 'itchyny/lightline.vim'
|
||||||
|
|
||||||
|
2. Install with `:NeoBundleInstall`.
|
||||||
|
|
||||||
@@ -1,3 +1,11 @@
|
|||||||
|
" =============================================================================
|
||||||
|
" Filename: autoload/lightline.vim
|
||||||
|
" Version: 0.0
|
||||||
|
" Author: itchyny
|
||||||
|
" License: MIT License
|
||||||
|
" Last Change: 2013/08/22 04:53:30.
|
||||||
|
" =============================================================================
|
||||||
|
|
||||||
let s:save_cpo = &cpo
|
let s:save_cpo = &cpo
|
||||||
set cpo&vim
|
set cpo&vim
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
" =============================================================================
|
||||||
|
" Filename: autoload/lightline/colorscheme/default.vim
|
||||||
|
" Version: 0.0
|
||||||
|
" Author: itchyny
|
||||||
|
" License: MIT License
|
||||||
|
" Last Change: 2013/08/22 04:54:11.
|
||||||
|
" =============================================================================
|
||||||
|
|
||||||
let s:c = {'normal': {}, 'inactive': {}, 'insert': {}, 'replace': {}, 'visual': {}}
|
let s:c = {'normal': {}, 'inactive': {}, 'insert': {}, 'replace': {}, 'visual': {}}
|
||||||
let s:c.normal.left = [ ['#0000ff', '#ffffff', 21, 231 ], [ '#ffffff', '#0000ff', 231, 21 ], [ '#ffffff', '#0000ff', 231, 21 ] ]
|
let s:c.normal.left = [ ['#0000ff', '#ffffff', 21, 231 ], [ '#ffffff', '#0000ff', 231, 21 ], [ '#ffffff', '#0000ff', 231, 21 ] ]
|
||||||
let s:c.normal.right = [ [ '#303030', '#d0d0d0', 236, 252 ], [ '#303030', '#8a8a8a', 236, 245 ], [ '#bcbcbc', '#585858', 250, 240 ] ]
|
let s:c.normal.right = [ [ '#303030', '#d0d0d0', 236, 252 ], [ '#303030', '#8a8a8a', 236, 245 ], [ '#bcbcbc', '#585858', 250, 240 ] ]
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
" =============================================================================
|
||||||
|
" Filename: autoload/lightline/colorscheme/landscape.vim
|
||||||
|
" Version: 0.0
|
||||||
|
" Author: itchyny
|
||||||
|
" License: MIT License
|
||||||
|
" Last Change: 2013/08/22 04:54:25.
|
||||||
|
" =============================================================================
|
||||||
|
|
||||||
let s:c = {'normal': {}, 'inactive': {}, 'insert': {}, 'replace': {}, 'visual': {}}
|
let s:c = {'normal': {}, 'inactive': {}, 'insert': {}, 'replace': {}, 'visual': {}}
|
||||||
let s:c.normal.left = [ ['#0000ff', '#ffffff', 21, 231 ], [ '#ffffff', '#0000ff', 231, 21 ], [ '#ffffff', '#0000ff', 231, 21 ] ]
|
let s:c.normal.left = [ ['#0000ff', '#ffffff', 21, 231 ], [ '#ffffff', '#0000ff', 231, 21 ], [ '#ffffff', '#0000ff', 231, 21 ] ]
|
||||||
let s:c.normal.right = [ [ '#303030', '#d0d0d0', 236, 252 ], [ '#303030', '#8a8a8a', 236, 245 ], [ '#bcbcbc', '#585858', 250, 240 ] ]
|
let s:c.normal.right = [ [ '#303030', '#d0d0d0', 236, 252 ], [ '#303030', '#8a8a8a', 236, 245 ], [ '#bcbcbc', '#585858', 250, 240 ] ]
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
" =============================================================================
|
||||||
|
" Filename: plugin/lightline.vim
|
||||||
|
" Version: 0.0
|
||||||
|
" Author: itchyny
|
||||||
|
" License: MIT License
|
||||||
|
" Last Change: 2013/08/22 04:53:26.
|
||||||
|
" =============================================================================
|
||||||
|
|
||||||
let s:save_cpo = &cpo
|
let s:save_cpo = &cpo
|
||||||
set cpo&vim
|
set cpo&vim
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user