Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Linux - File vimrc

// Configurazione minima di VIM

   1  
   2  syntax on
   3  
   4  set backspace=indent,eol,start
   5  set nocompatible " rende vim compatibile a vi
   6  
   7  set hlsearch
   8  set incsearch
   9  set autoindent
  10  set textwidth=0
  11  set ruler " fa apparire la posizione del cursore
  12  set history=50
  13  
  14  if has("autocmd") " permette il riconoscimento del linguaggio
  15  	filetype plugin indent on
  16  endif
  17  
  18  set showcmd
  19  set showmatch
  20  
  21  set nowrap
  22  
  23  colorscheme delek
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS