Advertisement
Guest User

Untitled

a guest
Oct 28th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.78 KB | None | 0 0
  1. let &t_Co=256
  2. set t_Co=256
  3. set title
  4. set ruler
  5. set showmatch
  6. set ignorecase
  7. set incsearch
  8. set hlsearch
  9. set bs=2
  10. set nobackup
  11. let html_use_css = 1
  12.  
  13. set encoding=utf-8
  14.  
  15. set diffopt+=iwhite " Ignore whitespace whilst diffing
  16. nnoremap <silent> <F5> :let _s=@/<Bar>:%s/\s\+$//e<Bar>:let @/=_s<Bar>:nohl<CR>
  17.  
  18. noremap <F3> :set invnumber<CR>
  19. inoremap <F3> <C-O>:set invnumber<CR>
  20.  
  21.  
  22. set list listchars=nbsp:¬,tab:»·,trail:·,extends:>
  23. set shiftwidth=4
  24. set softtabstop=4
  25. set tabstop=4
  26. set noswapfile
  27.  
  28. set background=dark
  29.  
  30. set undofile
  31. set undodir=/tmp
  32.  
  33. " http://stackoverflow.com/questions/526858/how-do-i-make-vim-do-normal-bash-like-tab-completion-for-file-names
  34. set wildmode=longest,list,full
  35. set wildmenu
  36.  
  37. syntax on
  38. filetype plugin indent on
  39. set nofoldenable
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement