This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " 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 |