Guest User

Untitled

a guest
Nov 20th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. so ./.vim/plugins.vim
  2.  
  3. let mapleader = ','
  4.  
  5. syntax on
  6. colorscheme dracula
  7.  
  8. nmap <Leader>ev :e $MYVIMRC<cr>
  9. nmap <Leader>ep :e ~/.vim/plugins.vim<cr>
  10.  
  11. set guioptions-=T
  12. set guioptions-=L
  13. set guioptions-=r
  14. set guioptions-=R
  15.  
  16. set lines=60
  17. set columns=210
  18.  
  19. set guiheadroom=0
  20.  
  21.  
  22. set tabstop=4
  23. set softtabstop=4 noexpandtab
  24. set shiftwidth=4
  25.  
  26. augroup vimrc
  27. au!
  28. au BufWritePost $MYVIMRC source %
  29. augroup END
Add Comment
Please, Sign In to add comment