Skip to content

Instantly share code, notes, and snippets.

@Usse
Created July 28, 2014 07:16
Show Gist options
  • Save Usse/a9191002747c730aad39 to your computer and use it in GitHub Desktop.
Save Usse/a9191002747c730aad39 to your computer and use it in GitHub Desktop.
.vimrc
" tabulazione a 2
"set ts=2 et
" gesture del mouse
set mouse=a
" numeri di linea
set number
" matching delle parentesi
set showmatch
" word wrap
set nowrap
" colors
syntax on
set t_Co=256
" ignore case when searching
set ignorecase
" highlight search results
set hlsearch
"set incsearch
" Turn backups off
set nobackup
set nowb
set noswapfile
" Tabs
"set expandtab
set smarttab
set ai "Auto indent
set si "Smart indent
set shiftwidth=2
set tabstop=2
" **** COLORS ****
set background=dark
"colorscheme dracula
colorscheme distinguished
"colorscheme spacedust
"colorscheme toychest
"colorscheme codeschool
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment