Created
July 28, 2014 07:16
-
-
Save Usse/a9191002747c730aad39 to your computer and use it in GitHub Desktop.
.vimrc
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
" 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