Guest User

Untitled

a guest
Jun 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. " appearence
  2. set bg=dark
  3. set number ruler
  4. set numberwidth=5
  5. syntax on
  6. syntax sync fromstart
  7. let g:molokai_original=1
  8. colorscheme molokai
  9.  
  10. set scrolloff=3
  11.  
  12. set virtualedit=all
  13. set vb t_vb=
  14.  
  15. set nofoldenable
  16.  
  17. set nocompatible
  18.  
  19. set tabstop=4
  20. set shiftwidth=4
  21. set softtabstop=4
  22. set expandtab
  23.  
  24. set showmatch
  25. set matchpairs+=<:>
  26. set matchtime=3
  27.  
  28. set wrap
  29. set linebreak
  30. filetype indent on
  31. set autoindent
  32. set smartindent
  33.  
  34. set nowrap
  35.  
  36. " search
  37. set incsearch
  38. set ignorecase
  39. set smartcase
  40. " esc clears last search-highlight
  41. "nnoremap <C-Esc> :noh<return><esc>
  42.  
  43. set smartcase
  44. set cursorline
  45.  
  46. " encoding
  47. set encoding=utf8
  48. set fileencoding=utf8
  49.  
  50. " navigation
  51. map gn :tabnew<CR>
  52. map gw :tabclose<CR>
  53.  
  54. " text bubbling - using Tim Pope's unimpaired plugin
  55. nmap <C-Up> [e
  56. nmap <C-Down> ]e
  57. vmap <C-Up> [egv
  58. vmap <C-Down> ]egv
Add Comment
Please, Sign In to add comment