Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. colorscheme molokai
  2. if has('gui_running')
  3. set guioptions-=T " Remove the toolbar
  4. set lines=40 " 40 lines of text instead of 24
  5. if !exists("g:spf13_no_big_font")
  6. if LINUX() && has("gui_running")
  7. set guifont=YaHei\ Consolas\ Hybrid\ 12,Andale\ Mono\ Regular\ 12,Menlo\ Regular\ 11,Consolas\ Regular\ 12,Courier\ New\ Regular\ 14
  8. elseif OSX() && has("gui_running")
  9. set guifont=YaHei\ Consolas\ Hybrid\:h14,Andale\ Mono\ Regular:h12,Menlo\ Regular:h11,Consolas\ Regular:h12,Courier\ New\ Regular:h14
  10. elseif WINDOWS() && has("gui_running")
  11. set guifont=Andale_Mono:h10,Menlo:h10,Consolas:h10,Courier_New:h10
  12. endif
  13. endif
  14. else
  15. if &term == 'xterm' || &term == 'screen'
  16. set t_Co=256 " Enable 256 colors to stop the CSApprox warning and make xterm vim shine
  17. endif
  18. "set term=builtin_ansi " Make arrow and other keys work
  19. endif
  20.  
  21. Plugin 'vim-airline/vim-airline-themes'
  22. let g:airline#extensions#tabline#enabled = 1
  23. let g:airline_theme='dark'
  24. nnoremap <silent> <C-L> :nohlsearch<CR><C-L>
  25. inoremap <expr><CR> neosnippet#expandable() ? neosnippet#mappings#expand_or_jump_impl() : pumvisible() ? neocomplete#close_popup() : "\<CR>""
  26. set nospell
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement