Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. set nocompatible
  2. filetype plugin indent on "turn on filetype
  3. syntax on "turn on syntax highlighting
  4. set number "turn on line number
  5. set fileencoding=utf8 "default encoding
  6. set fileencodings=utf-8,ucs-bom,gb18030,default "encodings
  7. set showmatch "show match braces
  8. set showcmd "show typing command
  9. set wildmenu "command completion
  10. set laststatus=2 "status line
  11. set statusline=[%n]\ %<%.99f\ %h%w%m%r%y\ %=%-16(\ %l,%c-%v\ %)[%{&fenc}]%P
  12. set backspace=indent,eol,start "make backspace normal
  13. set hlsearch
  14. set incsearch
  15. set gdefault
  16. set smartcase
  17. set autoindent
  18. set smartindent
  19. set tabstop=4
  20. set shiftwidth=4
  21. set softtabstop=4
  22. set expandtab
  23. set smarttab
  24. colorscheme desert
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement