Linux - File vimrc
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