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
function! ToggleMinimap() | |
if exists("s:isMini") && s:isMini == 0 | |
let s:isMini = 1 | |
else | |
let s:isMini = 0 | |
end | |
if (s:isMini == 0) | |
" save current visible lines | |
let s:firstLine = line("w0") |
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
set nocompatible | |
"Включаем распознавание типов файлов и типо-специфичные плагины: | |
filetype on | |
filetype plugin on | |
filetype plugin indent on | |
"Настройки табов для Python, согласно рекоммендациям | |
set tabstop=4 | |
set shiftwidth=4 |