Advertisement
Guest User

Untitled

a guest
Jun 13th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. "set encoding=utf-8
  2. "set guifont=MS_Gothic:h13:cANSI:qDRAFT
  3. "set guifont=*
  4. set guifont=MS_Gothic:h14
  5.  
  6. syntax enable
  7. set background=light
  8. "colorscheme solarized
  9. "colorscheme inkstained
  10. "colorscheme one
  11. "colorscheme abstract
  12. "colorscheme anderson
  13. "colorscheme jellybeans
  14. "colorschem lightning
  15. "ayu
  16. set termguicolors
  17. "let ayucolor="light"
  18. "let ayucolor="dark"
  19. let ayucolor="mirage"
  20. colorschem ayu
  21.  
  22. let g:lightline = {
  23. \ 'active': {
  24. \ 'left': [ [ 'mode', 'paste' ],
  25. \ [ 'readonly', 'filename' ] ],
  26. \ },
  27. \ 'component_function': {
  28. \ 'filename': 'LightlineFilename',
  29. \ },
  30. \ }
  31.  
  32. function! LightlineFilename()
  33. let filename = expand('%:t') !=# '' ? expand('%:t') : '[No Name]'
  34. let modified = &modified ? ' +' : ''
  35. return filename . modified
  36. endfunction
  37.  
  38. function! LightlineFileformat()
  39. return winwidth(0) > 70 ? &fileformat : ''
  40. endfunction
  41.  
  42. function! LightlineFiletype()
  43. return winwidth(0) > 70 ? (&filetype !=# '' ? &filetype : 'no ft') : ''
  44. endfunction
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement