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
| require 'irb/completion' | |
| IRB.conf[:SAVE_HISTORY] = 1000 | |
| IRB.conf[:AUTO_INDENT] = true | |
| # history command | |
| def history(count = 0) | |
| # Get history into an array | |
| history_array = Readline::HISTORY.to_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
| set number | |
| set tabstop=4 | |
| set softtabstop=4 | |
| set expandtab | |
| set shiftwidth=4 | |
| set smarttab | |
| set autoindent | |
| let g:go_highlight_trailing_whitespace_error = 0 | |
| " Pathogen plugin stuff, see https://github.com/tpope/vim-pathogen |
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
| #define UNICODE | |
| #define _UNICODE | |
| #include <windows.h> | |
| #include <tchar.h> | |
| #include <stdint.h> | |
| #include <dsound.h> | |
| #include <xinput.h> | |
| #include <cstdio> | |
| #include <cmath> |