Advertisement
Guest User

Untitled

a guest
Aug 5th, 2015
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. syntax on
  2. set number
  3. set bg=dark
  4. set showcmd
  5. set wildmenu
  6. set hlsearch
  7. set smartcase
  8. set incsearch
  9. set ignorecase
  10. set nocompatible
  11. set foldmethod=marker
  12.  
  13. set ff=unix
  14. set mouse=a
  15. set list lcs=trail:·,tab:»·
  16.  
  17. set tabstop=4
  18. set softtabstop=4
  19. set shiftwidth=4
  20. set expandtab
  21.  
  22. map <S-C-y> :w<CR>:!python %<CR>
  23. map <S-C-u> :w<CR>:!ruby %<CR>
  24.  
  25. filetype plugin indent on
  26. autocmd FileType ruby setlocal ts=2 sts=2 sw=2 et
  27. autocmd FileType python setlocal ts=4 sts=4 sw=4 et
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement