Browse Source

Fixed issue with gitignore

main
Yigit Colakoglu 4 years ago
parent
commit
c1714896f1
2 changed files with 19 additions and 0 deletions
  1. +3
    -0
      local/share/vim/plugin/bufferline.vim
  2. +16
    -0
      local/share/vim/plugin/lightline.vim

+ 3
- 0
local/share/vim/plugin/bufferline.vim View File

@ -0,0 +1,3 @@
let g:lightline#bufferline#show_number = 1
let g:lightline#bufferline#shorten_path = 0
let g:lightline#bufferline#unnamed = '[No Name]'

+ 16
- 0
local/share/vim/plugin/lightline.vim View File

@ -0,0 +1,16 @@
let g:lightline = {
\ 'colorscheme': 'material_vim',
\ 'active': {
\ 'left': [ [ 'mode', 'paste' ], [ 'readonly', 'filename', 'modified' ] ]
\ },
\ 'tabline': {
\ 'left': [ ['buffers'] ],
\ 'right': [ ['close'] ]
\ },
\ 'component_expand': {
\ 'buffers': 'lightline#bufferline#buffers'
\ },
\ 'component_type': {
\ 'buffers': 'tabsel'
\ }
\ }

Loading…
Cancel
Save