Guest User

Untitled

a guest
May 26th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. set nu!
  2. set shiftwidth=2
  3. set tabstop=2
  4. set expandtab
  5. set helplang=cs
  6. set ruler
  7. set showmode
  8. set nocompatible
  9. set backspace=indent,eol,start
  10. set spelllang=cs
  11. set nospell
  12. syntax on
  13. set fileencodings=utf-8,latin2
  14. filetype on
  15. set gfn=DejaVu\ Sans\ Mono\ 10
  16. set guioptions-=T
  17. let g:toggleTool = 0
  18. map <silent> <S-F1> :if g:toggleTool == 1<CR>:set guioptions-=T<CR>:set guioptions-=m<CR>:let g:toggleTool = 0<CR>:else<CR>:set guioptions+=T<CR>:set guioptions+=m<CR>:let g:toggleTool = 1<CR>:endif<CR>
  19. set statusline=%F%m%r%h%w\ [FORMAT\ %{&ff}]\ [ASCII\ \%03.3b/\%02.2B]\ [POS\ %l/%L,%v](%p%%)
  20. set mouse=a
  21. set selectmode-=mouse
  22. noremap <Up> g<Up>
  23. noremap <Down> g<Down>
  24. inoremap <Up> <Esc>g<Up>a
  25. inoremap <Down> <Esc>g<Down>a
  26. inoremap <CR> <CR><Space><BS>
  27. nnoremap o o<Space><BS>
  28. nnoremap O O<Space><BS>
  29. set autoindent
  30. set hlsearch
Add Comment
Please, Sign In to add comment