Skip to content

Instantly share code, notes, and snippets.

@simo501
simo501 / .vimrc
Last active January 10, 2026 13:21
" 1. Indentazione specifica per tipo di file
filetype plugin indent on
au BufRead,BufNewFile Makefile* set noexpandtab
" 2. Impostazioni Editor (Tab e Spazi)
set expandtab " Usa spazi invece di tab
set tabstop=4 " Larghezza tab = 4 spazi
set softtabstop=4
set shiftwidth=4 " Indentazione automatica = 4 spazi
set autoindent