We Recommend

bash Cookbook: Solutions and Examples for bash Users bash Cookbook: Solutions and Examples for bash Users
bash Cookbook teaches shell scripting the way Unix masters practice the craft. It presents a variety of recipes and tricks for all levels of shell programmers so that anyone can become a proficient user of the most common Unix shell -- the bash shell -- and cygwin or other popular Unix emulation packages.


Posted By

whitetiger on 11/09/06


Tagged

Shell unix linux apache configuration MODULES swsup dso debian vim vi vimrc config gvim


Versions (?)


Linux - File vimrc


Published in: Bash 


  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 

You need to login to post a comment.