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

syntax on

set backspace=indent,eol,start
set nocompatible " rende vim compatibile a vi

set hlsearch
set incsearch
set autoindent
set textwidth=0
set ruler " fa apparire la posizione del cursore
set history=50

if has("autocmd") " permette il riconoscimento del linguaggio
	filetype plugin indent on
endif

set showcmd
set showmatch

set nowrap

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