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
| { | |
| "keymaps": { | |
| "0": { "type": "scroll.home" }, | |
| ":": { "type": "command.show" }, | |
| "o": { "type": "command.show.open", "alter": false }, | |
| "O": { "type": "command.show.open", "alter": true }, | |
| "t": { "type": "command.show.tabopen", "alter": false }, | |
| "T": { "type": "command.show.tabopen", "alter": true }, | |
| "w": { "type": "command.show.winopen", "alter": false }, | |
| "W": { "type": "command.show.winopen", "alter": true }, |
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 so=999 | |
| imap jj <Esc> | |
| set number | |
| set relativenumber | |
| set nohlsearch | |
| syntax on | |
| set mouse=a |
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
| # Logbook | |
| LOGBOOK_DIR="$HOME/Documents/logbook" | |
| function lb() { | |
| # Creates logbook entry and opens it up in Vim | |
| mkdir -p $LOGBOOK_DIR | |
| vim $LOGBOOK_DIR/$(date '+%Y-%m-%d').md | |
| } | |
| function lbs() { | |
| touch $LOGBOOK_DIR/$SPRINT_NUM | |
| } |
NewerOlder