Last active
August 29, 2015 14:10
-
-
Save grzegorzgg/9b79c55bd5661c4b1e3d to your computer and use it in GitHub Desktop.
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
| "verison 6.0 | |
| " Basics { | |
| set nocompatible " niekompatybilny z VI => włącz bajery VIMa | |
| set number | |
| set numberwidth=5 " ilosc znakow w kolumnie z numerami linii | |
| set incsearch " wyszukiwanie po wpisaniu / lub ? | |
| set ignorecase " przy wyszukiwaniu ignoruje wielkosc liter | |
| set smartcase " nie ignoruj wielkości liter po ustawieniu ignorecase, jeśli została użyta przynajmniej jedna wielka litera | |
| set showmode " pokazuje tryb pracy | |
| set hlsearch " podswietla wyniki wyszukiwania | |
| set background=dark " dark lub light | |
| set autoindent " w nowej linii uzywaj tego samego wciecia co w poprzedniej | |
| set expandtab " ustawiam tabulacje jako spacje | |
| set shiftwidth=4 " rozmiar tabulatora ilosc spacji | |
| set softtabstop=4 " | |
| set encoding=utf-8 | |
| set fileencodings=usc-bom,utf-8,latin2 | |
| set termencoding=utf-8 | |
| set mouse=a | |
| set helplang=pl | |
| set history=50 | |
| set noswapfile | |
| syntax on | |
| "} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment