Skip to content

Instantly share code, notes, and snippets.

View dobriak's full-sized avatar

Julian Neytchev dobriak

View GitHub Profile
@dobriak
dobriak / .vimrc
Last active December 23, 2015 07:29
My vimrc file. Autoindentation and tabbing, editting new files in tabs with f7/f8 back and forth (:tab e <file> to open in a tab)
:set autoindent
:set shiftwidth=2
:set tabstop=2
:set expandtab
:map <F7> :tabp<CR>
:map <F8> :tabn<CR>
:set pastetoggle=<F2>
@dobriak
dobriak / AutoShutdown.bat
Created November 10, 2012 23:02
Automatically shut down Windows after a user specified interval.
@echo off
REM ---
REM AutoShutdown.bat
REM Shuts down Windows after a user specified interval
REM by Julian Neytchev https://github.com/dobriak
REM ---
REM How many minutes before shutdown? (Default:60)
SET MINUTES=60
SET /P MINUTES=Snooze minutes (60): %=%
REM Convert to seconds