Advertisement
Guest User

vmim

a guest
Oct 14th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. "pathogen
  2. execute pathogen#infect()
  3. filetype on
  4.  
  5. syntax on
  6. colorscheme sublimemonokai
  7. set tabstop=2 "two spaces per tab
  8. set softtabstop=2 "two space per tab when editing
  9. set expandtab "tabs -> space
  10. set number
  11. set cursorline "Highlight current line
  12. set wildmenu "autocomplete
  13. set showmatch "matching brackers
  14. set incsearch "search characters as entered
  15. set hlsearch "highlight matches
  16. "use \<space> to reset search highlights
  17. nnoremap <leader><space> :nohlsearch<CR>
  18. set foldenable "allow cold folding
  19. set foldlevelstart=10 "most open by default (10 rings)
  20. set foldnestmax=10
  21. nnoremap <space> za
  22. set foldmethod=indent
  23.  
  24. "move to begining/end of line
  25. nnoremap B ^
  26. nnoremap E $
  27. "clear previous binds
  28. nnoremap $ <nop>
  29. nnoremap ^ <nop>
  30.  
  31. "let mapleader="\"
  32. nnoremap <F5> :GundoToggle<CR>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement