Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. " Plug plugins installation
  2. call plug#begin('~/.vim/plugged')
  3. Plug 'dracula/vim', { 'as': 'dracula' }
  4. Plug 'vim-airline/vim-airline'
  5. Plug 'vim-airline/vim-airline-themes'
  6. call plug#end()
  7.  
  8.  
  9. set encoding=utf-8
  10. set laststatus=2
  11. "syntax on
  12. " Color Schemes
  13. colorscheme onedark
  14. set t_ut=
  15. " Airline Settings
  16. let g:airline_theme='simple'
  17. " let g:airline_powerline_fonts = 1
  18. ""t termguicolors
  19. set modelines=0
  20.  
  21. set wrap
  22.  
  23. set formatoptions=tcqrn1
  24. set tabstop=2
  25. set shiftwidth=2
  26. set softtabstop=2
  27. set expandtab
  28. set noshiftround
  29.  
  30. set scrolloff=5
  31.  
  32. set number
  33.  
  34. set list
  35.  
  36. set mouse=a
  37.  
  38. if (empty($TMUX))
  39. if (has("nvim"))
  40. let $NVIM_TUI_ENABLE_TRUE_COLOR=1
  41. endif
  42. if (has("termguicolors"))
  43. set termguicolors
  44. endif
  45. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement