use https://gist.github.com/pocke/6f833d431f419eb09bdd6beb0b5ee637#file-this-year-repos-rb
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
| test text |
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
| languages: | |
| vim: | |
| lint-command: 'vint -' | |
| lint-stdin: true | |
| markdown: | |
| lint-command: 'markdownlint -s' | |
| lint-stdin: true | |
| lint-formats: | |
| - '%f:%l %m' |
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
| [dein] #: not sourced, X: not installed | |
| empty-prompt.vim | |
| vim-anzu | |
| emmet-vim | |
| vim-operator-convert-case | |
| lightline-buffer | |
| jasegment.vim | |
| rfc-syntax | |
| # vimodoro | |
| sarahck.vim |
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
| grep test code | |
| to gist | |
| let s:Grep = s:V.import('App.Grep') | |
| " top grep util | |
| let module_list = s:Grep.modules() | |
| let module_list = s:Grep.modules(prio_list) " prio list sorted | |
| let module = s:Grep.module('name') |
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
| # We use PROMPT_COMMAND and the DEBUG trap to generate timing information. We try | |
| # to avoid clobbering what we can, and try to give the user ways around our | |
| # clobbers, if it's unavoidable. For example, PROMPT_COMMAND is appended to, | |
| # and the DEBUG trap is layered with other traps, if it exists. | |
| # A bash quirk is that the DEBUG trap is fired every time a command runs, even | |
| # if it's later on in the pipeline. If uncorrected, this could cause bad timing | |
| # data for commands like `slow | slow | fast`, since the timer starts at the start | |
| # of the "fast" command. |
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
| " install vim-pulg | |
| if has('vim_starting') | |
| set rtp+=~/.vim/plugged/vim-plug | |
| if !isdirectory(expand('~/.vim/plugged/vim-plug')) | |
| echo 'install vim-plug...' | |
| call mkdir(expand('~/.vim/plugged/vim-plug'), 'p') | |
| call system('git clone https://github.com/junegunn/vim-plug.git ' . expand('~/.vim/plugged/vim-plug/autoload')) | |
| end | |
| endif | |
| " setup |
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
| " install vim-pulg | |
| if has('vim_starting') | |
| set rtp+=~/.vim/plugged/vim-plug | |
| if !isdirectory(expand('~/.vim/plugged/vim-plug')) | |
| echo 'install vim-plug...' | |
| call mkdir(expand('~/.vim/plugged/vim-plug'), 'p') | |
| call system('git clone https://github.com/junegunn/vim-plug.git ' . expand('~/.vim/plugged/vim-plug/autoload')) | |
| end | |
| endif | |
| " setup |
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
| " install vim-pulg | |
| if has('vim_starting') | |
| set rtp+=~/.vim/plugged/vim-plug | |
| if !isdirectory(expand('~/.vim/plugged/vim-plug')) | |
| echo 'install vim-plug...' | |
| call mkdir(expand('~/.vim/plugged/vim-plug'), 'p') | |
| call system('git clone https://github.com/junegunn/vim-plug.git ' . expand('~/.vim/plugged/vim-plug/autoload')) | |
| end | |
| endif | |
| " setup |