-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.vim
34 lines (33 loc) · 1018 Bytes
/
plugins.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
""""""""""""""""""""""""""""""""""""""""""""""""""
""""""""""Nerdtree""""""""""""""""""""""""""""""""
""""""""""""""""""""""""""""""""""""""""""""""""""
Plug 'scrooloose/nerdtree'
map <F3> :NERDTreeToggle<CR>
imap <F3> <ESC>:NERDTreeToggle<CR>
""""""""""""""""""""""""""""""""""""""""""""""""""
""""""""""""""""""""""""""""""""""""""""""""""""""
""""""""""Lightline"""""""""""""""""""""""""""""""
""""""""""""""""""""""""""""""""""""""""""""""""""
Plug 'itchyny/lightline.vim'
Plug 'mengelbrecht/lightline-bufferline'
let g:lightline = {
\ 'colorscheme': 'solarized',
\ 'active': {
\ 'left': [ [ 'mode', 'paste' ],
\ [ 'readonly', 'filename', 'modified' ] ]
\ },
\ 'tabline': {
\ 'left': [ [ 'buffers' ] ],
\ 'right': [ [ ] ],
\ },
\ 'component_expand': {
\ 'buffers': 'lightline#bufferline#buffers'
\ },
\ 'component_type': {
\ 'buffers': 'tabsel'
\ },
\ 'bufferline': {
\ 'unicode_symbols': 1
\ }
\ }
""""""""""""""""""""""""""""""""""""""""""""""""""