Advertisement
jorgecedi

Basic VIMRC

Oct 24th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.61 KB | None | 0 0
  1. set nocompatible
  2. set noswapfile
  3. set nobackup
  4. set encoding=utf-8
  5. set number
  6. set relativenumber
  7. colorscheme blue
  8. set showmode
  9. set showmatch
  10. set nowrap
  11. syntax on
  12. set autoindent
  13. set smartindent
  14. set cindent
  15. set expandtab
  16. set shiftwidth=4
  17. set softtabstop=4
  18. set backspace=indent,eol,start
  19. set cursorline
  20. set cursorcolumn
  21. set hidden
  22.  
  23. set path+=**
  24. set wildmenu
  25. set guioptions-=m
  26. set guioptions-=T
  27. set guioptions-=r
  28. set guioptions-=L
  29.  
  30. set ignorecase
  31. set smartcase
  32. set spellsuggest=best,10
  33. set colorcolumn=80
  34.  
  35. set laststatus=2
  36. map <C-h> <C-w>h
  37. map <C-j> <C-w>j
  38. map <C-k> <C-w>k
  39. map <C-l> <C-w>l
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement