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 autoindent | |
| :set shiftwidth=2 | |
| :set tabstop=2 | |
| :set expandtab | |
| :map <F7> :tabp<CR> | |
| :map <F8> :tabn<CR> | |
| :set pastetoggle=<F2> |
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
| @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 |
NewerOlder