Linux - File vimrc


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. syntax on
  2.  
  3. set backspace=indent,eol,start
  4. set nocompatible " rende vim compatibile a vi
  5.  
  6. set hlsearch
  7. set incsearch
  8. set autoindent
  9. set textwidth=0
  10. set ruler " fa apparire la posizione del cursore
  11. set history=50
  12.  
  13. if has("autocmd") " permette il riconoscimento del linguaggio
  14. filetype plugin indent on
  15. endif
  16.  
  17. set showcmd
  18. set showmatch
  19.  
  20. set nowrap
  21.  
  22. colorscheme delek

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.